SqlCeConnection.FlushFailure Event
.NET Framework 3.0
Occurs when the background flush fails.
Namespace: System.Data.SqlServerCe
Assembly: System.Data.SqlServerCe (in system.data.sqlserverce.dll)
Assembly: System.Data.SqlServerCe (in system.data.sqlserverce.dll)
'Declaration Public Event FlushFailure As SqlCeFlushFailureEventHandler 'Usage Dim instance As SqlCeConnection Dim handler As SqlCeFlushFailureEventHandler AddHandler instance.FlushFailure, handler
/** @event */ public void add_FlushFailure (SqlCeFlushFailureEventHandler value) /** @event */ public void remove_FlushFailure (SqlCeFlushFailureEventHandler value)
In JScript, you can handle the events defined by a class, but you cannot define your own.
Not applicable.
The following example shows how to use the FlushFailure event.
Public Sub Snippet4() Dim conn As SqlCeConnection = Nothing Try conn = New SqlCeConnection("Data Source = MyDatabase.sdf; Password ='<pwd>'") AddHandler conn.FlushFailure, AddressOf conn_FlushFailure conn.Open() 'Flush failure occurs here 'OnFlushFailure will be called from the background thread. Finally conn.Close() End Try End Sub Private Sub conn_FlushFailure(ByVal sender As System.Object, ByVal e As SqlCeFlushFailureEventArgs) Dim errors As SqlCeErrorCollection = e.Errors Console.WriteLine("Flush Failure: " + errors(0).Message) End Sub
Community Additions
ADD
Show: