c#中如何将combobox中的值存入数据库?

c#中如何将combobox中的值存入数据库?,第1张

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

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

if(read.hasrows)

{

while(read.Read())

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

}

1 连接数据库,读取记录,假设读取的数据为一个SqlDataAdapter,设为变量ada2 DataTable dt=new DataTable() ada.Fill(dt) combobox.DataSource=dt combobox.DisplayMember="你查询语句中的需要显示的表的列名"


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存