if (cbFussyMatch.Checked)
{
if (tbContent.Text.Trim().Length > 0)
{
using (SqlConnection con = new SqlConnection("server=.\\SQLEXPRESS;database=SQL;uid=sa;pwd=11111"))
{
con.Open();
string sqlquery = "select * from Person where psnNo, psnName, psnSex, psnAge, psnAddress, psnDuty LIKE'%"
+ tbContent.Text + "%'";
SqlDataAdapter dap = new SqlDataAdapter(sqlquery, con);
DataSet ds = new DataSet();
dap.Fill(ds);
dgvUser.DataSource = ds.Tables[0].DefaultView;
}
}
dap.Fill(ds); 出现错误提示:未处理sqlexception 在应使用条件的上下文(在 ',' 附近)中指定了非布尔类型的表达式.
请问该怎么改?
|