次のメソッドがあり、両方のパラメーターが null です
bool hasValue = HasValue(null,null);
internal bool HasValue(int? param1, int? param2)
{
int count = 0;
using (var conn = new OracleConnection(connectionString))
{
using (var command = conn.CreateCommand())
{
command.CommandText = "select count(id) from Table1 "
+ "where ((Column1 = :PARAM1 and :PARAM1 Is Not Null) Or (Column1 Is Null and :PARAM1 Is Null)) "
+ "AND ((Column2 = :PARAM2 and :PARAM2 Is Not Null) Or (Column2 Is Null and :PARAM2 Is Null))";
command.Parameters.Add("PARAM1", OracleDbType.Int16, 0, param1, ParameterDirection.Input);
command.Parameters.Add("PARAM2", OracleDbType.Int16, 0,param2, ParameterDirection.Input);
command.Connection.Open();
count = Convert.ToInt16(command.ExecuteScalar());
command.Connection.Close();
}
}
return count > 0;
}
このメソッドは、「ORA-01008: すべての変数がバインドされていません」というエラーで失敗します。
パラメータを 1 つだけ使用する場合は問題ありませんが、2 つ目を追加すると、「ORA-01008: すべての変数がバインドされていません」で失敗します。
前もって感謝します