使用C#做Access数据库查询的问题(急,在线等)
发布网友
发布时间:2024-09-17 03:28
我来回答
共4个回答
热心网友
时间:2024-09-29 07:29
用datatable保存你取得的记录,comboBox1
datatable dt = Query();
for(int i=0;i<dt.rows.count;i++)
{
comboB1.items.add(dt.rows[i]["col"]);
}
查询语句参照代码:
public DataTable Query()
{
string param1 =combox1.selected.value.tostring();
string param2 =combox2.selected.value.tostring()
strCommand = "SELECT" + param2 +" FROM "+@TABLENAME+" WHERE 1=1";
cmd.CommandText = strCommand; // cmd是sqlCommand对象
SqlDataAdapter da = new SqlDataAdapter(strCommand, conn);
da.SelectCommand = cmd;
DataSet ds = new DataSet();
da.Fill(ds);
dt = ds.Tables[0];
return dt;
}
有问题再追问吧,望采纳。
热心网友
时间:2024-09-29 07:31
表名:string guanxian =combox.selected.value.tostring() // 管线
字段:string caizhi =combox.selected.value // 材质
材质的字段假设为 cz
SQL=“select * from guanxian where cz='"+caizhi+"' ”
如有问题 可以查询我ID名称的这个网站的客服
热心网友
时间:2024-09-29 07:34
你这样的设计不是很规范,如果只是想急于实现功能的话,可以在选框里面预先写好表名和中文名称。如果你非要想用sql的话,并不是一个正规的思路,数据库中尽量避免用中文表名或是中文字段名。
热心网友
时间:2024-09-29 07:35
combox有两个属性 显示给用户的是Text属性,而你英文的表名应该写到Value属性里去
然后后台获取用combox。selectedvalue
如果不会 我可以远程操作给你看