在delphi中如何用combobox实现分级读取数据库中的内容

在delphi中如何用combobox实现分级读取数据库中的内容,第1张

你可以在combobox1的OnChange事件里写代码

adoquery1.Close

adoquery1.SQL.Clear

adoquery1.SQL.Add('SELECT

distinct

XXX

from

CPU

where

brand='''+combobox1.text+'''')

adoquery1.Open

combobox2.Items.Clear

while

not

adoquery1.Eof

do

begin

combobox2.Items.Add(adoquery1.fieldbyname('XXX').AsString)

adoquery1.Next

end

依次类推,在combobox2的OnChange事件再写事件啊!

可以用一个SqlDataReader 将数据库的信息加入到ComboBox控件中:

SqlDataReader read=new SqlDataReader("select id from user")

if(read.hasrows)

{

while(read.Read())

commobox.items.add(read["id"].tostring())

}

可以用一个SqlDataReader 将数据库的信息加入到ComboBox控件中:

SqlDataReader read=new SqlDataReader("select id from user")

if(read.hasrows)

{

while(read.Read())

commobox.items.add(read["id"].tostring())

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9885153.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-03
下一篇 2023-05-03

发表评论

登录后才能评论

评论列表(0条)

保存