0

我在 SQL Server Management Studio 中运行了 SQL Query,它工作正常。

这是我的代码

    private void buttonRunQuery_Click(object sender, EventArgs e)
     {
         if (connection == null)
         {
             connection = ConnectionStateToSQLServer();
             SqlCommand command = new SqlCommand(null, connection);
             command = createSQLQuery(command);
             dataGridView1.DataSource = GetData(command);
         }
         else
         {
             SqlCommand command = new SqlCommand(null, connection);
             command = createSQLQuery(command);
             dataGridView1.DataSource = GetData(command);
         }
     }

    private SqlCommand createSQLQuery(SqlCommand command)
     {
         string[] allTheseWords;
         if (textBoxAllTheseWords.Text.Length > 0)
         {
             allTheseWords = textBoxAllTheseWords.Text.Split(' ');
             string SQLQuery = "SELECT distinct [database].[dbo].[customerTable].[name], [database].[dbo].[customerTable].[dos], [database].[dbo].[customerTable].[accountID], [database].[dbo].[reportTable].[customerID], [database].[dbo].[reportTable].[accountID], [database].[dbo].[reportTable].[fullreport] FROM [database].[dbo].[reportTable], [database].[dbo].[customerTable] WHERE ";
             int i = 1;
             foreach (string word in allTheseWords)
             {
                 var name = "@word" + (i++).ToString();
                 command.Parameters.AddWithValue(name, "'%" + word "%'");
                 SQLQuery = SQLQuery + String.Format(" [database].[dbo].[reportTable].[fullreport] LIKE {0} AND ", name);
             }
             SQLQuery = SQLQuery + " [database].[dbo].[customerTable].[accountID] = [database].[dbo].[reportTable].[accountID]";
             command.CommandText = SQLQuery;
         }
         MessageBox.Show(command.CommandText.ToString());
         return command;
     }

    public DataTable GetData(SqlCommand cmd)
     {
         //SqlConnection con = new SqlConnection(connString);
         //SqlCommand cmd = new SqlCommand(sqlcmdString, cn);
         SqlDataAdapter da = new SqlDataAdapter(cmd);
         connection.Open();
         DataTable dt = new DataTable();
         da.Fill(dt);
         connection.Close();
         return dt;
     } 

VS2012 没有给出错误,并且我的 DataGridView 中没有数据

有什么建议么?

我看到了这个网站,它并没有真正帮助

http://bytes.com/topic/c-sharp/answers/530616-datagridview-combobox-column-databound-item-list

我正在使用 SQL Server 2012

更新后的查询在 SQL Server Management Studio 中带来了 1 个结果(这是预期的)。相同的查询不会在我的数据网格中产生任何行。

我想不通是怎么回事?我需要使用 VS2012 的 GUI 绑定任何东西吗?

4

2 回答 2

4

我注意到您正在进行 LIKE 搜索,但是当您添加参数时,您没有使用“%”。尝试添加这个:

command.Parameters.AddWithValue(name, "%" + word +"%");

希望这可以帮助。

顺便说一句——该DataBind方法不用于 gridviews 的 win 表单,仅用于 web 表单。

祝你好运。

于 2013-02-01T21:49:07.350 回答
1

您应该在 DataGrid 上调用方法 DataBind() 以将数据从数据源实际绑定到网格。

dataGridView1.DataBind();
于 2013-02-01T21:20:13.577 回答