C#中多条件查询出错,请高手帮忙修改
privatevoidbutton4_Click(objectsender,EventArgse){stringsql="select*from[业务员信息]where1...
private void button4_Click(object sender, EventArgs e)
{
string sql = "select * from [业务员信息] where1=1";
if (tBox1.Text != "")
{
sql += "and 业务员ID = " + tBox1.Text;
}
if (tBox2.Text != "")
{
sql += "and 姓名= " + tBox2.Text;
} //共四个条件,这里列出了两个
OleDbConnection oledb2 = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0; data source=date.mdb");
oledb2.Open();
DataSet dataset = new DataSet();
OleDbDataAdapter update = new OleDbDataAdapter(sql, oledb2);
update.Fill(dataset); //这句出错,提示from子句语法错误
dataGridView1.DataSource = dataset.Tables[0]; 展开
{
string sql = "select * from [业务员信息] where1=1";
if (tBox1.Text != "")
{
sql += "and 业务员ID = " + tBox1.Text;
}
if (tBox2.Text != "")
{
sql += "and 姓名= " + tBox2.Text;
} //共四个条件,这里列出了两个
OleDbConnection oledb2 = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0; data source=date.mdb");
oledb2.Open();
DataSet dataset = new DataSet();
OleDbDataAdapter update = new OleDbDataAdapter(sql, oledb2);
update.Fill(dataset); //这句出错,提示from子句语法错误
dataGridView1.DataSource = dataset.Tables[0]; 展开
4个回答
展开全部
如果业务员ID 和业务员ID定义为字符型,则用sql连接时应该加''
sql += "and 业务员ID = '" + tBox1.Text +"'";
sql += "and 姓名= '" + tBox2.Text +"'";
还有where1=1 是否是 where 1=1
sql += "and 业务员ID = '" + tBox1.Text +"'";
sql += "and 姓名= '" + tBox2.Text +"'";
还有where1=1 是否是 where 1=1
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
sql += "and 姓名= ‘" + tBox2.Text +"'";
把参数用单引号包裹。
把参数用单引号包裹。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询