C# combox和dataview数据联动
我想在“选择”框选择表上不同的字段后,点击button“查询”显示相应的内容,刚开始学,不懂求大神帮忙!!我这代码只能把数据库里的数据显示出来。privatevoidbu...
我想在“选择”框选择表上不同的字段后,点击button“查询”显示相应的内容,刚开始学,不懂求大神帮忙!!
我这代码只能把数据库里的数据显示出来。
private void buttonX2_Click(object sender, EventArgs e)
{
DataSet ds = new DataSet();
SqlConnection conn = null;
SqlDataAdapter da = null;
const string DRIVER = "server=USER-20141121RF;database=bysj;uid=sa;pwd=123456";
const string sql_select = "select * from Table_zd";
myconnection = new SqlConnection(DRIVER);
da = new SqlDataAdapter(sql_select, conn);
conn = new SqlConnection(DRIVER);
da = new SqlDataAdapter(sql_select, conn);
da.Fill(ds, "Table_zd");
this.dataGridViewX1.DataSource = ds.Tables["Table_zd"].DefaultView;
da.Fill(ds, "Table_zd");
this.dataGridViewX1.DataSource = ds.Tables["Table_zd"].DefaultView;
}
private void comboBoxEx1_SelectedIndexChanged(object sender, EventArgs e)
{
} 展开
我这代码只能把数据库里的数据显示出来。
private void buttonX2_Click(object sender, EventArgs e)
{
DataSet ds = new DataSet();
SqlConnection conn = null;
SqlDataAdapter da = null;
const string DRIVER = "server=USER-20141121RF;database=bysj;uid=sa;pwd=123456";
const string sql_select = "select * from Table_zd";
myconnection = new SqlConnection(DRIVER);
da = new SqlDataAdapter(sql_select, conn);
conn = new SqlConnection(DRIVER);
da = new SqlDataAdapter(sql_select, conn);
da.Fill(ds, "Table_zd");
this.dataGridViewX1.DataSource = ds.Tables["Table_zd"].DefaultView;
da.Fill(ds, "Table_zd");
this.dataGridViewX1.DataSource = ds.Tables["Table_zd"].DefaultView;
}
private void comboBoxEx1_SelectedIndexChanged(object sender, EventArgs e)
{
} 展开
展开全部
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
int n=comboBox1.SelectedIndex;//下拉选中项的索引号。然后你自己根据不同的索引值用if或switch连接查询不同的内容。
}
追问
大神,能不能在具体点。我是新手,不是太懂
追答
你不是连接显示了一张数据表吗,就写这些。
要改的是表名,const string sql_select = "select * from Table_zd";这句要改下表名,就连接别的数据表了。
因为你是根据combobox的选项来,一个选项就连接一张不同的数据表。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
威孚半导体技术
2024-08-19 广告
2024-08-19 广告
威孚(苏州)半导体技术有限公司是一家专注生产、研发、销售晶圆传输设备整机模块(EFEM/SORTER)及核心零部件的高科技半导体公司。公司核心团队均拥有多年半导体行业从业经验,其中技术团队成员博士、硕士学历占比80%以上,依托丰富的软件底层...
点击进入详情页
本回答由威孚半导体技术提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询