SQLクエリのパラメータを指定する次のコードがあります。 Code 1
を使用すると例外になります。私がCode 2
を使用すると正常に動作します。 Code 2
にはnullのチェックがあり、したがってif..else
ブロックがあります。AddWithValueパラメータがNULLの場合の例外
例外:
パラメータ化クエリ供給されなかった '@application_ex_id' パラメータを、期待 '(@application_ex_idのnvarchar(4000))E.application_ex_id Aを選択します'。
コード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のlogSearch.LogIDの値からNULLを取ることができないのですか(ただしDBNullを受け入れることはできますか?
これを処理する優れたコードはありますか?
リファレンス:
- Assign null to a SqlParameter
- Datatype returned varies based on data in table
- Conversion error from database smallint into C# nullable int
- What is the point of 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;
}
を使用することは非常に簡単です:これを行う、あなたのコードに続いて
をより良い?コード2は、データベースにNULL値を送信する正しい方法です。 –
参照:http://stackoverflow.com/questions/13265704/conversion-error-from-database-smallint-into-c-sharp-nullable-int – Lijo