SqlError.LineNumber Proprietà

Definizione

Ottiene il numero di riga nel batch dei comandi Transact-SQL o nella stored procedure che contiene l'errore.

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

Valore della proprietà

Numero di riga nel batch dei comandi Transact-SQL o nella stored procedure che contiene l'errore.

Esempio

Nell'esempio seguente vengono visualizzati ognuno SqlError all'interno della SqlErrorCollection raccolta.

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();
        }
    }
}

Commenti

Il numero di linee inizia a 1. Se il valore è 0, il numero di riga non è applicabile.

Per altre informazioni sugli errori generati da SQL Server, vedere Eventi e errori del motore di database.

Si applica a