0

我有如下 ADO.Net 代码,它调用存储过程。在存储过程中,我首先通过 SELECT 查询获取结果集,RAISERROR如果传递的 @companyId 参数值不存在,则在 SELECT 语句调用后调用。我已经多次使用 @companyId 的值对此代码运行单元测试,因此RAISEERROR被调用,但我从未看到ExecuteReader引发错误的调用。为什么会发生这种奇怪的违反直觉的事情?

sqlCmd = new SqlCommand("dbo.xyz_sp_Attributes_GetValues", new  SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings["VHA_EDM_ConnectionString"].ConnectionString));
sqlCmd.CommandType = CommandType.StoredProcedure;
sqlCmd.Parameters.AddWithValue("@attributeId", attributeId);
sqlCmd.Parameters.AddWithValue("@companyId", companyId);
sqlCmd.Parameters.AddWithValue("@attributeScope", "Company");
sqlCmd.Connection.Open();
SqlDataReader dr = sqlCmd.ExecuteReader(CommandBehavior.CloseConnection);
while (dr.Read())
{
    attributeValue = dr["AttributeValue"].ToString();
}

存储过程代码如下所示

SELECT col1, col2, ... where CompanyId = @companyId and AttributeId = @attributeId
if @companyId not exists (select companyId from Company where CompanyId = @companyId)
begin
 set @errMessage = N'Invalid Company Error'
 RAISERROR (@errMessage, 16, 1)
end
4

1 回答 1

1

在这种情况下,将返回多个记录集。第一个是空的,这就是为什么你没有收到任何错误。您必须调用 NextRecordset 来获取错误。

dr.NextResult(); // This will throw the error caused by RAISEERROR

在客户端代码中进行错误检查而不是调用 RAISEERROR 会容易得多,在任何情况下都必须将其作为异常处理。

使用 SqlDataReader 在客户端捕获 Sql Server RAISERROR

于 2012-04-10T22:03:34.677 回答