dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleConnection Class / Error Event

In This Topic
    Error Event (OracleConnection)
    In This Topic
    Occurs when Oracle returns an error message.
    Syntax
    'Declaration
     
    Public Event Error As OracleConnectionErrorEventHandler
    Event Data

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

    PropertyDescription
    Gets the Oracle specific error code.  
    Gets the full text of the error sent from the Oracle database.  
    Remarks

    Clients that want to process errors raised by the server should create an OracleConnectionErrorEventHandler delegate to listen to this event.

    See Also