WEB开发网
开发学院数据库MSSQL Server 基于SQL Server 的Exception Handling - PART III... 阅读

基于SQL Server 的Exception Handling - PART III

 2008-12-06 10:15:26 来源:WEB开发网   
核心提示:六、SqlException 在上面一节中,我给出了一个完整的例子说明了:如何在将message定义在sys.messages中保证message的一致性和可维护性;如何在Stored procedure中使用RAISERROR将一个可预知的Error抛出;如何在Stored procedure中使用TRY/CATCH

六、SqlException

在上面一节中,我给出了一个完整的例子说明了:如何在将message定义在sys.messages中保证message的一致性和可维护性;如何在Stored procedure中使用RAISERROR将一个可预知的Error抛出;如何在Stored procedure中使用TRY/CATCH进行异常的捕捉;在Application如果处理从SQL Server抛出的Exception。实际上,SQL Server database Engine抛出、被我们的.NET最终捕获的SqlException,我们通过SqlException的属性可以得到Error的相关信息。下面是SqlException的属性列表:

public SqlErrorCollection Errors { get; }

public int LineNumber { get; }

public int Number { get; }

public string Procedure { get; }

public string Server { get; }

public override string Source { get; }

public byte State { get; }

有了前面的内容作铺垫,相信大家都知道每个属性分别表示的什么了吧。为了使大家对

stored procedure的Error和ADO.NET捕获的Error的Mapping有一个更加清晰的认识。我们来写一个Sample,我们沿用Create User的例子:

在stored procedure中,遇到重名通过RAISERROR抛出异常[在整篇文章中,使用到Error和Exception,大家可以看成是等效的]:

·     Error Number:50001

·     Severity:16

·     State:1

·     Message:This user is already existent

我们来修正一下CreateUser方法:

public static bool CreateUser(string userName)
    {
      string procedureName = "P_USERS_I";
      Dictionary<string, object> parameters = new Dictionary<string, object>();
      parameters.Add("user_id", Guid.NewGuid().ToString());
      parameters.Add("user_name", userName);
      try
      {
        ExecuteCommand(procedureName, parameters);
        return true;
      }
      catch (SqlException ex)
      {
        Console.WriteLine("ex.Classt: {0}", ex.Class);
        Console.WriteLine("ex.ErrorCodet: {0}", ex.ErrorCode);
        Console.WriteLine("ex.LineNumbert: {0}", ex.LineNumber);
        Console.WriteLine("ex.Messaget: {0}", ex.Message);
        Console.WriteLine("ex.Numbert: {0}", ex.Number);
        Console.WriteLine("ex.Proceduret: {0}", ex.Procedure);
        Console.WriteLine("ex.Servert: {0}", ex.Server);
        Console.WriteLine("ex.Sourcet: {0}", ex.Source);
        Console.WriteLine("ex.Statet: {0}", ex.State);
     return false;
      }
    }

1 2  下一页

Tags:基于 SQL Server

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接