基于SQL数据库的Exception Handling - PART III_SQL SERVER数据库_黑客防线网安服务器维护基地--Powered by WWW.RONGSEN.COM.CN

基于SQL数据库 的Exception Handling - PART III[组图]

作者:黑客防线网安SQL维护基地 来源:黑客防线网安SQL维护基地 浏览次数:0

本篇关键词:组图数据库基于public
黑客防线网安网讯:  六、SqlException   在上面一节中,我给出了一个完整的例子说明了:如何在将message定义在sys.messages中保证message的一致性和可维护性;如何在Stored procedure中使用RAISERROR将一...

  六、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;
      }
    }

    黑客防线网安服务器维护方案本篇连接:http://www.rongsen.com.cn/show-9774-1.html
网站维护教程更新时间:2012-03-21 02:25:31  【打印此页】  【关闭
我要申请本站N点 | 黑客防线官网 |  
专业服务器维护及网站维护手工安全搭建环境,网站安全加固服务。黑客防线网安服务器维护基地招商进行中!QQ:29769479

footer  footer  footer  footer