请问怎样才能把我的textbox1的值放到sql语句里面再查询啊,谢谢 在线等
privatevoidbutton1_Click(objectsender,EventArgse){stringsql=("select*fromtable_1where...
private void button1_Click(object sender, EventArgs e)
{
string sql = ("select * from table_1 where name="textBox1.Text" ");
con = new SqlConnection(constr);//定义连接语句
SqlDataAdapter sad = new SqlDataAdapter(sql, con);//创建查询器
DataSet ds = new DataSet();//创建结果集
sad.Fill(ds);//将结果集填入
con.Close();//关闭连接
this.dataGridView1.DataSource = ds.Tables[0];//获取结果集中第一个表,指定数据源 展开
{
string sql = ("select * from table_1 where name="textBox1.Text" ");
con = new SqlConnection(constr);//定义连接语句
SqlDataAdapter sad = new SqlDataAdapter(sql, con);//创建查询器
DataSet ds = new DataSet();//创建结果集
sad.Fill(ds);//将结果集填入
con.Close();//关闭连接
this.dataGridView1.DataSource = ds.Tables[0];//获取结果集中第一个表,指定数据源 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询