javax.sql
Class ConnectionEvent

java.lang.Object
  extended byjava.util.EventObject
      extended byjavax.sql.ConnectionEvent
All Implemented Interfaces:
java.io.Serializable

public class ConnectionEvent
extends java.util.EventObject

The ConnectionEvent class provides information about the source of a connection related event. ConnectionEvent objects provide the following information:

See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
ConnectionEvent(PooledConnection (src)  pooledConnection)
          Construct a ConnectionEvent object.
ConnectionEvent(PooledConnection (src)  pooledConnection, java.sql.SQLException e)
          Construct a ConnectionEvent object.
 
Method Summary
 java.sql.SQLException getSQLException()
          Gets the SQLException about to be thrown.
 
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
 

Constructor Detail

ConnectionEvent

public ConnectionEvent(PooledConnection (src)  pooledConnection)
Construct a ConnectionEvent object. SQLException defaults to null.

Parameters:
pooledConnection - - the pooled connection that is the source of the event

ConnectionEvent

public ConnectionEvent(PooledConnection (src)  pooledConnection,
                       java.sql.SQLException e)
Construct a ConnectionEvent object.

Parameters:
pooledConnection - - the pooled connection that is the source of the event
e - - the SQLException about to be thrown to the application
Method Detail

getSQLException

public java.sql.SQLException getSQLException()
Gets the SQLException about to be thrown. May be null.

Returns:
The SQLException about to be thrown