web-dev-qa-db-ja.com

AddWithValueパラメーターがNULLの場合の例外

SQLクエリのパラメーターを指定する次のコードがあります。 Code 1を使用すると、次の例外が発生します。 Code 2を使用すると正常に動作します。 Code 2にはnullのチェックがあるため、if..elseブロックがあります。

例外:

パラメータ化されたクエリ「(@application_ex_id nvarchar(4000))SELECT E.application_ex_id A」では、パラメータ「@application_ex_id」が必要ですが、指定されていませんでした。

コード1

command.Parameters.AddWithValue("@application_ex_id", logSearch.LogID);

コード2

if (logSearch.LogID != null)
{
         command.Parameters.AddWithValue("@application_ex_id", logSearch.LogID);
}
else
{
        command.Parameters.AddWithValue("@application_ex_id", DBNull.Value );
}

[〜#〜] question [〜#〜]

  1. コード1のlogSearch.LogID値からNULLを取得できない(DBNullは受け入れることができる)理由を説明してください。

  2. これを処理するためのより良いコードはありますか?

参照

  1. SqlParameterにnullを割り当てる
  2. 返されるデータ型はテーブル内のデータに基づいて異なります
  3. データベースsmallintからC#nullable intへの変換エラー
  4. DBNullのポイントは何ですか?

コード

    public Collection<Log> GetLogs(LogSearch logSearch)
    {
        Collection<Log> logs = new Collection<Log>();

        using (SqlConnection connection = new SqlConnection(connectionString))
        {
            connection.Open();

            string commandText = @"SELECT  *
                FROM Application_Ex E 
                WHERE  (E.application_ex_id = @application_ex_id OR @application_ex_id IS NULL)";

            using (SqlCommand command = new SqlCommand(commandText, connection))
            {
                command.CommandType = System.Data.CommandType.Text;

                //Parameter value setting
                //command.Parameters.AddWithValue("@application_ex_id", logSearch.LogID);
                if (logSearch.LogID != null)
                {
                    command.Parameters.AddWithValue("@application_ex_id", logSearch.LogID);
                }
                else
                {
                    command.Parameters.AddWithValue("@application_ex_id", DBNull.Value );
                }

                using (SqlDataReader reader = command.ExecuteReader())
                {
                    if (reader.HasRows)
                    {
                        Collection<Object> entityList = new Collection<Object>();
                        entityList.Add(new Log());

                        ArrayList records = EntityDataMappingHelper.SelectRecords(entityList, reader);

                        for (int i = 0; i < records.Count; i++)
                        {
                            Log log = new Log();
                            Dictionary<string, object> currentRecord = (Dictionary<string, object>)records[i];
                            EntityDataMappingHelper.FillEntityFromRecord(log, currentRecord);
                            logs.Add(log);
                        }
                    }

                    //reader.Close();
                }
            }
        }

        return logs;
    }
73
Lijo

迷惑ですね。

次を使用できます。

command.Parameters.AddWithValue("@application_ex_id",
       ((object)logSearch.LogID) ?? DBNull.Value);

または、代わりに「dapper」などのツールを使用します。これにより、すべての処理が自動的に行われます。

例えば:

var data = conn.Query<SomeType>(commandText,
      new { application_ex_id = logSearch.LogID }).ToList();

私はtemptedを使用して、dapperにIDataReaderを取得するメソッドを追加します。

123
Marc Gravell

Null値を処理するSqlParameterCollectionの拡張メソッドを書く方が簡単だと思います。

public static SqlParameter AddWithNullableValue(
    this SqlParameterCollection collection,
    string parameterName,
    object value)
{
    if(value == null)
        return collection.AddWithValue(parameterName, DBNull.Value);
    else
        return collection.AddWithValue(parameterName, value);
}

次に、次のように呼び出します。

sqlCommand.Parameters.AddWithNullableValue(key, value);
42
AxiomaticNexus

ストアドプロシージャの呼び出し中にこれを行う場合に備えて、パラメーターで既定値を宣言し、必要な場合にのみ追加する方が読みやすいと思います。

例:(sql)

DECLARE PROCEDURE myprocedure
    @myparameter [int] = NULL
AS BEGIN

(c#)

int? myvalue = initMyValue();
if (myvalue.hasValue) cmd.Parameters.AddWithValue("myparamater", myvalue);

私はこれが古いことを知っていますが、これは役に立ち、共有したいと思いました。

2
z00l

いくつかの問題、SQLDbTypeの設定に必要

command.Parameters.Add("@Name", SqlDbType.NVarChar);
command.Parameters.Value=DBNull.Value

ここで、SqlDbType.NVarCharを入力します。必要に応じてSQLタイプを設定します。円城

1
user1599225