SqlError.Number 属性

定义

获取一个标识错误类型的数字。

public:
 property int Number { int get(); };
public int Number { get; }
member this.Number : int
Public ReadOnly Property Number As Integer

属性值

标识错误类型的数字。

示例

以下示例显示 SqlError 集合中的每个 SqlErrorCollection

using Microsoft.Data.SqlClient;
using System.Collections.Generic;
using System.Text;

namespace Classic_WebData_SqlError.StateCS
{
    class Program
    {
        static void Main()
        {
            //DisplaySqlErrors();
        }

        public void DisplaySqlErrors(SqlException exception)
        {
            for (int i = 0; i < exception.Errors.Count; i++)
            {
                Console.WriteLine("Index #" + i + "\n" +
                    "Source: " + exception.Errors[i].Source + "\n" +
                    "Number: " + exception.Errors[i].Number.ToString() + "\n" +
                    "State: " + exception.Errors[i].State.ToString() + "\n" +
                    "Class: " + exception.Errors[i].Class.ToString() + "\n" +
                    "Server: " + exception.Errors[i].Server + "\n" +
                    "Message: " + exception.Errors[i].Message + "\n" +
                    "Procedure: " + exception.Errors[i].Procedure + "\n" +
                    "LineNumber: " + exception.Errors[i].LineNumber.ToString());
            }
            Console.ReadLine();
        }
    }
}

注解

下表描述了此属性的可能值:

错误源 SqlError.Number SqlError.State 从 with.NET Framework 4.5 开始,SqlException 具有内部 Win32Exception ()
服务器出错 服务器错误代码

此数字对应于表中的 master.dbo.sysmessages 条目。
通常大于 0
连接超时值 -2 0 是 (Number = 258)
非 LocalDB) (通信错误 Win32 错误代码 0 是 (编号 = Win32 错误代码)
LocalDB) (通信错误 Win32 错误代码 0
加密功能不匹配 20 0
无法启动 LocalDB Win32 错误代码 0
只读路由失败 0 0
服务器在处理查询时出现严重错误 0 0
分析结果时处理了取消 0 0
未能创建用户实例 0 0

有关SQL Server生成的错误的详细信息,请参阅数据库引擎事件和错误

适用于