怎么把数据库里面的数据绑定到combobox上
发布网友
发布时间:2022-04-10 09:16
我来回答
共2个回答
热心网友
时间:2022-04-10 10:45
有没绑定过类似的,方法一样,就sql不一样,然后还有就是:
this.combobox.DataSource = 数据源
this.combobox.DataTextField = "显示的内容";
this.combobox.DataValueField = "索引";
this.combobox.DataBind();
热心网友
时间:2022-04-10 12:03
combobox.Items.Clear();
dtTable = new DataTable();
strSQL = "select 栏位 from 表";
strResult = DBLink.executeQuery(strSQL, dtTable);
if (!strResult.Equals(""))
{
MessageBox.Show("查询时发生异常!");
}
else
for (int i = 0; i <= dtTable.Rows.Count - 1; i++)
combobox.Items.Add(dtTable.Rows[i][0].ToString());
dtTable.Dispose();
dtTable = null;