共用方式為


SqlError.Number 屬性

定義

取得識別錯誤類型的值。

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

屬性值

識別錯誤類型的值。

範例

下列範例會顯示集合內的每一個 SqlErrorSqlErrorCollection

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 SqlException 從 Framework 4.5 with.NET 開始 (內部 Win32Exception)
來自伺服器的錯誤 伺服器錯誤碼

這個數位會對應至資料表中的 master.dbo.sysmessages 專案。
通常大於 0
連接逾時 -2 0 是 (數位 = 258)
非 LocalDB) (通訊錯誤 Win32 錯誤碼 0 是 (號碼 = Win32 錯誤碼)
LocalDB (通訊錯誤) Win32 錯誤碼 0
加密功能不符 20 0
無法啟動 LocalDB Win32 錯誤碼 0
唯讀路由失敗 0 0
伺服器處理查詢時發生嚴重錯誤 0 0
剖析結果時已處理取消 0 0
無法建立使用者實例 0 0

如需SQL Server所產生的錯誤詳細資訊,請參閱Database Engine 事件和錯誤

適用於