|
Public Member Functions |
| SQLException () |
| This method initializes a new instance of SQLException that does not have a descriptive messages and SQL state, and which has a vendor error code of 0.
|
| SQLException (INP(RString) message) |
| This method initializes a new instance of SQLException with the specified descriptive error message.
|
| SQLException (INP(RString) message, INP(RString) sqlState) |
| This method initializes a new instance of SQLException with the specified descriptive error message and SQL state string.
|
| SQLException (INP(RString) message, INP(RString) sqlState, int vendorCode) |
| This method initializes a nwe instance of SQLException with the specified descriptive error message, SQL state string, and vendor code.
|
RString | getSQLState () |
| This method returns the SQLState information associated with this error.
|
int | getErrorCode () |
| This method returns the vendor specific error code associated with this error.
|
RSQLException | getNextException () |
| This method returns the exception that is chained to this object.
|
void | setNextException (INP(RSQLException) e) |
| This method adds a new exception to the end of the chain of exceptions that are chained to this object.
|
Private Attributes |
RSQLException | _next |
| This is the next exception in the chain .
|
RString | _sqlState |
| This is the state of the SQL statement at the time of the error.
|
int | _vendorCode |
| The vendor error code for this error .
|