java.lang.Object | +--java.util.EventObject | +--javax.sql.ConnectionEvent
The ConnectionEvent class provides information about the source of a connection related event. ConnectionEvent objects provide the following information:
Fields inherited from class java.util.EventObject |
source |
ConnectionEvent(PooledConnection con) Construct a ConnectionEvent object. | |
ConnectionEvent(PooledConnection con, java.sql.SQLException ex) Construct a ConnectionEvent object. |
getSQLException() Get the SQLException. |
Methods inherited from class java.util.EventObject |
getSource, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
publicConnectionEvent(PooledConnection con)
Construct a ConnectionEvent object. SQLException defaults to null.
con
- the pooled connection that is the source of the eventpublicConnectionEvent(PooledConnection con, java.sql.SQLException ex)
Construct a ConnectionEvent object.
con
- the pooled connection that is the source of the eventex
- the SQLException about to be thrown to the applicationpublic java.sql.SQLExceptiongetSQLException()
Get the SQLException. May be null.