0

SQL Server Management Studio で SQL クエリを実行したところ、うまくいきました。

WinForm C# アプリケーションで次のエラーが発生します

The parameterized query '(@word1 text)SELECT distinct [database].[dbo].[tableName].[n' expects the parameter '@word1', which was not supplied.

これが私のコードです

    private void buttonRunQuery_Click(object sender, EventArgs e)
     {
         if (connection == null)
         {
             connection = ConnectionStateToSQLServer();
             SqlCommand command = new SqlCommand(null, connection);
             command = createSQLQuery(command);
             GetData(command);
         }
         else
         {
             SqlCommand command = new SqlCommand(null, connection);
             command = createSQLQuery(command);
             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.Add(name, SqlDbType.Text);
                     //(name, SqlDbType.Text).Value = 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;
     } 

da.Fill(dt) でエラーが発生しています

どんな提案も役に立ちます

ありがとうございました

4

2 に答える 2

1

あなたの例では、パラメーターの値を設定した行をコメントアウトしています。

command.Parameters.Add(name, SqlDbType.Text);
//(name, SqlDbType.Text).Value = word;

パラメータの値を設定しない場合、その値は無視されます (存在しません)。これに変更します。

command.Parameters.AddWithValue(name, word);

明確にするために、次の引用を検討してください。

追加する値。null 値を示すには、null の代わりに DBNull.Value を使用します。

ここから: SqlParameterCollection.AddWithValue メソッド

于 2013-02-01T16:52:27.327 に答える
1

On var name = "@word" + (i++).ToString(); i だけを使用し、別の場所でインクリメントします。

于 2013-02-01T16:45:41.697 に答える