使用多个条件的SQL搜索查询

时间:2013-01-23 09:15:27

标签: c# sql where sqlparameters

我的问题是,我做了一个用于搜索的子表单,但我在sql查询和参数方面有问题,我的代码是

SqlConnection sc = new SqlConnection(
    "Data Source=MOHAMMED-PC;Initial Catalog=salessystem;Integrated Security=True");

SqlCommand command = new SqlCommand(
    "Select * from customers WHERE (docno = @doc) OR (NAME LIKE @name ) OR (salepoint = @salepoint)", sc);
DataTable dt = new DataTable();
command.Parameters.AddWithValue("@doc", doctxt.Text);
command.Parameters.Addwithvalue("@name", nametxt.Text);
command.Parameters.AddWithValue("@salepoint", salepointtxt.Text);
SqlDataAdapter sda = new SqlDataAdapter(command, sc);
sda.Fill(dt);
dataGridView1.DataSource = dt;

我在sql adapter命令和where子句命令中有错误,任何帮助??

1 个答案:

答案 0 :(得分:4)

三件事:

  1. 你在这一行有一个错字

    command.Parameters.Addwithvalue("@name", nametxt.Text);
    

    该方法为AddWithValue(注意案例差异)

  2. constructor of SqlDataAdapter接受命令但没有连接,因为该命令已包含连接,所以这是正确的:

    SqlDataAdapter sda = new SqlDataAdapter(command);
    

    可能是最重要的最后一次:

  3. 如果您使用LIKE,则需要使用通配符%

    command.Parameters.AddWithValue("@name", string.Format("%{0}%",nametxt.Text);