我无法将Data存入我的dataGridView

时间:2013-02-01 21:14:46

标签: c# sql-server winforms datagridview datatable

我在SQL Server Management Studio中运行了SQL查询,但它运行良好。

这是我的代码

    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

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

我无法弄清楚最近发生了什么?我是否需要使用VS2012的GUI绑定任何内容?

2 个答案:

答案 0 :(得分:4)

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

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

希望这有帮助。

BTW - DataBind方法不用于网格视图的获胜形式,仅用于网络表单。

祝你好运。

答案 1 :(得分:1)

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

dataGridView1.DataBind();