C#.net 下拉框combobox 代码绑定sqlserver的问题
发布网友
发布时间:2022-04-14 10:17
我来回答
共3个回答
懂视网
时间:2022-04-14 14:38
关于comBox绑定SQL Server数据库中时间字段中的不重复的年份如下: private void Education_Training_Load(object sender, EventArgs e) { MyDBase DB = new MyDBase(DBUser.sserver, DBUser.DBName, DBUser.suser, DBUser.spasswd); DataSet DS = DB.GetRec
关于comBox绑定SQL Server数据库中时间字段中的不重复的年份如下:
private void Education_Training_Load(object sender, EventArgs e)
{
MyDBase DB = new MyDBase(DBUser.sserver, DBUser.DBName, DBUser.suser, DBUser.spasswd);
DataSet DS = DB.GetRecordset("select distinct (year(date)) as date from education_train ");
if (DS.Tables[0].Rows.Count == 0) return;
comboBox_Year.DataSource = DS.Tables[0];
comboBox_Year.DisplayMember = "date";
comboBox_Year.ValueMember = "date";
comboBox_Year.SelectedIndex = comboBox_Year.Items.Count - 1;//选中最大年份
if (DB.ErrorCode())
{
MessageBox.Show(DB.ErrMessage(), "提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
dataGridView1.DataSource = DS.Tables[0];
DB.DBClose();
}
,
热心网友
时间:2022-04-14 11:46
combobox1.DisplayMember = "显示内容的字段名称";
combobox1.ValueMember = "对应的数值的字段名称";
combobox1.DataSource = ds.Tables["xilie"].DefaultView;
// 扩展信息,注意以下代码:
combobox1.Items.Add(Object Item)
Items 集合 Add 添加的是 Object 类型,它在显示下拉列表框项目时,实际上是调用 Object.ToString() 方法。根据此情形你可以绑定自定义的类型,并重写 ToString 方法。
热心网友
时间:2022-04-14 13:04
//combobox和dataGD的绑定数据库
private void Form1_Load(object sender, System.EventArgs e)
{
//在formload时绑定数据表yg到comboBox1
SqlConnection conn=new SqlConnection("server=.;uid=sa;pwd=;database=gz");
SqlDataAdapter da=new SqlDataAdapter("select * from yg",conn);
DataSet ds=new DataSet();
da.Fill(ds,"yg");
this.comboBox1.DataSource=ds.Tables["yg"];
this.comboBox1.DisplayMember="ygname"; //显示的列
this.comboBox1.ValueMember="ygid"; //数据列,次列会在selectedvalue中显示
}
//要在不同的方法中使用同一个数据集就要把数据集改成全局
DataSet ds1=new DataSet();
private void comboBox1_SelectedIndexChanged(object sender, System.EventArgs e)
{
SqlConnection conn=new SqlConnection("server=.;uid=sa;pwd=;database=gz");
//根据comboBox的选择写查询语句
try
{
SqlDataAdapter da=new SqlDataAdapter("select * from gz inner join yg on yg.ygid=gz.ygid where gz.ygid="+this.comboBox1.SelectedValue.ToString(),conn);
da.Fill(ds1,"gza");
this.dataGrid1.DataSource=ds1.Tables["gza"].DefaultView;
}
catch
{}
}
private void dataGrid1_Click(object sender, System.EventArgs e)
{
//通过datagrid中选中的行号来得到dataSet中的数据
this.textBox1.Text=ds1.Tables["gza"].Rows[this.dataGrid1.CurrentRowIndex]["gzid"].ToString();
this.textBox2.Text=ds1.Tables["gza"].Rows[this.dataGrid1.CurrentRowIndex]["gznum"].ToString();
}
}