Condividi tramite


Proprietà SqlCeException.Errors

Ottiene una raccolta di uno o più oggetti SqlCeError che contengono informazioni dettagliate relative alle eccezioni generate dal provider di dati .NET Compact Framework per SQL Server Compact.

Spazio dei nomi  System.Data.SqlServerCe
Assembly:  System.Data.SqlServerCe (in System.Data.SqlServerCe.dll)

Sintassi

'Dichiarazione
Public Property Errors As SqlCeErrorCollection
    Get
    Private Set
'Utilizzo
Dim instance As SqlCeException
Dim value As SqlCeErrorCollection

value = instance.Errors
public SqlCeErrorCollection Errors { get; private set; }
public:
property SqlCeErrorCollection^ Errors {
    SqlCeErrorCollection^ get ();
    private: void set (SqlCeErrorCollection^ value);
}
member Errors : SqlCeErrorCollection with get, private set
function get Errors () : SqlCeErrorCollection
private function set Errors (value : SqlCeErrorCollection)

Valore proprietà

Tipo: System.Data.SqlServerCe.SqlCeErrorCollection
Oggetto SqlCeErrorCollection che contiene le istanze raccolte della classe SqlCeError per l'eccezione.

Osservazioni

La classe SqlCeErrorCollection contiene sempre almeno un'istanza della classe SqlCeError.

Esempi

Nell'esempio seguente viene visualizzato ogni oggetto SqlCeError all'interno della raccolta SqlCeErrorCollection.

Try
    Dim repl As New SqlCeReplication()

    ' Fill repl properites here
    ' ...
    ' SqlCeReplication may throw SqlCeException which contains a 
    ' collection of errors; SQL Mobile database engine always
    ' returns one error in the collection
    '
    repl.Synchronize()
Catch e As SqlCeException
    Dim err As SqlCeError
    For Each err In e.Errors
        ' Use SqlCeError properties if you need specific
        ' application logic depending on the error condition
        '
        If 28577 = [err].NativeError Then 'SSCE_M_SCHEMAHASCHANGED
            ' Error specific logic goes here...
            '
        End If

        ' Note: For native error numbers, refer to SQL Server Mobile Errors
        ' in the SQL Server Mobile Books Online
        '
        MessageBox.Show([err].Message)
    Next err
End Try
try
{
    SqlCeReplication repl = new SqlCeReplication();

    // Fill repl properites here
    // ...

    // SqlCeReplication may throw SqlCeException which contains a 
    // collection of errors; SQL Mobile database engine always
    // returns one error in the collection
    //
    repl.Synchronize();
}
catch (SqlCeException e)
{
    foreach (SqlCeError error in e.Errors)
    {
        // Use SqlCeError properties if you need specific
        // application logic depending on the error condition
        //
        if (28577 == error.NativeError /*SSCE_M_SCHEMAHASCHANGED*/)
        {
            // Error specific logic goes here...
            //
        }

        // Note: For native error numbers, refer to SQL Server Mobile Errors
        // in the SQL Server Mobile Books Online
        //
        MessageBox.Show(error.Message);
    }
}

Vedere anche

Riferimento

SqlCeException Classe

Spazio dei nomi System.Data.SqlServerCe