如何在c#中的listbox里显示数据库中的内容

2024-11-25 21:53:50
推荐回答(3个)
回答1:

public  void listboxbind()
{

SqlConnection conn=new SqlConnection("这里是连接语句");//连接数据库(最好用Using括起来)
conn.open();//打开连接
SqlCommand cmd = new SqlCommand("这里写你的查询语句,结果集就是你listbox想要显示的值",conn);
SqlDataReader sdr = cmd.ExecuteReader();
while(sdr.read()())
{
    listbox.item.add(sdr["这里写你想要显示的列名"].toString().Trim());
}
sdr.close();
conn.close();   // 关闭数据库连接
}

回答2:

外面开始的时候加上DataTable dt=null;
然后//这里
myDataReader.Fill(dt);
if(dt!=null&&dt.rows.count>0)
{
for(int i=;i{
listBox1.items.add(dt.rows[0].ToString());
}
}

回答3:

这个看不太明白的思密达