dotConnect for MySQL Documentation
Devart.Data.MySql Namespace / MySqlConnection Class / ConnectionLost Event
Example

ConnectionLost Event
This event occurs when connection is lost.
Syntax
'Declaration
 
Public Event ConnectionLost As ConnectionLostEventHandler
 
Event Data

The event handler receives an argument of type ConnectionLostEventArgs containing data related to this event. The following ConnectionLostEventArgs properties provide information specific to this event.

PropertyDescription
The number of attempts to reconnect.  
The reason of the connection loss.  
The object where the connection loss occurs.  
The state of connection when connection is lost.  
The application behavior when connection is lost.  
Remarks
Clients that want to process fatal errors and perform failover should create a ConnectionLostEventHandler delegate to listen to this event.
Example
MySqlConnection conn = new MySqlConnection("user id=root;password=root;port=3306;host=localhost;database=test");
    conn.LocalFailover = true;
    conn.ConnectionLost += new ConnectionLostEventHandler(conn_ConnectionLost);

static void conn_ConnectionLost(object sender, ConnectionLostEventArgs e) {

        if (e.Cause == ConnectionLostCause.Execute) {
                if (e.Context == ConnectionLostContext.None)
                        e.RetryMode = RetryMode.Reexecute;
                else
                        e.RetryMode = RetryMode.Raise;
        }
        else
                e.RetryMode = RetryMode.Raise;
}
Dim conn As MySqlConnection = New MySqlConnection("user id=root;password=root;port=3306;host=localhost;database=test")
conn.LocalFailover = True
    AddHandler conn.ConnectionLost, AddressOf conn_ConnectionLost

Sub conn_ConnectionLost(ByVal sender As Object, ByVal e As ConnectionLostEventArgs)
        If e.Cause = ConnectionLostCause.Execute Then
                If e.Context = ConnectionLostContext.None Then
                        e.RetryMode = RetryMode.Reexecute
                Else
                        e.RetryMode = RetryMode.Raise
                End If
        Else
                e.RetryMode = RetryMode.Raise
        End If
End Sub
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also