'Declaration Public Event Error As OracleConnectionErrorEventHandler
public event OracleConnectionErrorEventHandler Error
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.
Property | Description |
---|---|
Code | Gets the Oracle specific error code. |
Message | 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