读取存储过程返回的null时遇到问题
本文关键字:遇到 问题 null 存储过程 返回 读取 | 更新日期: 2023-09-27 17:58:21
我有一个存储过程,它返回单个记录,null
或数据(如果存在)。
在我的代码中,我需要检查该过程返回的内容。做这件事的正确方法是什么?
现在,当运行代码时,我会出现一个异常:"当没有数据时,读取的尝试无效。"我使用的是Visual Studio 2005。
这是我的方法:
public static String GetRegionBasedOnIso(String isoNum)
{
SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["MyConn"].ConnectionString);
String region = null;
try
{
using (SqlCommand cmd = new SqlCommand("MyProc", conn))
{
conn.Open();
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.AddWithValue("@isoNum", isoNum);
using (SqlDataReader dr = cmd.ExecuteReader())
{
if (dr.IsDBNull(0))
{
return null;
}
else
{
region = (String)dr["region"];
}
}
}
}
catch (Exception e)
{
throw new System.Exception(e.Message.ToString());
}
finally
{
conn.Close();
}
return region;
}
我能做些什么来修复它?感谢
if (dr.Read())
{
if (dr.IsDBNull(0))
{
return null;
}
else
{
region = (String)dr["region"];
}
}
else
{
// do something else as the result set is empty
}