SqlErrorCollection Class
.NET Framework 2.0
Collects all errors generated by the .NET Framework Data Provider for SQL Server. This class cannot be inherited.
Namespace: System.Data.SqlClient
Assembly: System.Data (in system.data.dll)
Assembly: System.Data (in system.data.dll)
This class is created by SqlException to collect instances of the SqlError class. SqlErrorCollection always contains at least one instance of the SqlError class.
The following example displays each SqlError within the SqlErrorCollection collection.
public static void ShowSqlException(string connectionString) { string queryString = "EXECUTE NonExistantStoredProcedure"; using (SqlConnection connection = new SqlConnection(connectionString)) { SqlCommand command = new SqlCommand(queryString, connection); try { command.Connection.Open(); command.ExecuteNonQuery(); catch (SqlException ex) { DisplaySqlErrors(ex); private static void DisplaySqlErrors(SqlException exception) { for (int i = 0; i < exception.Errors.Count; i++) { Console.WriteLine("Index #" + i + "\n" + "Error: " + exception.Errors[i].ToString() + "\n"); Console.ReadLine();
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.