| 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.util.EventObject
javax.sql.StatementEvent
public class StatementEvent
A StatementEvent is sent to all StatementEventListeners which were 
 registered with a PooledConnection. This occurs when the driver determines that a 
 PreparedStatement that is associated with the PooledConnection has been closed or the driver determines
 is invalid.
 
| Field Summary | 
|---|
| Fields inherited from class java.util.EventObject | 
|---|
| source | 
| Constructor Summary | |
|---|---|
| StatementEvent(PooledConnection con,
               PreparedStatement statement)Constructs a StatementEventwith the specifiedPooledConnectionandPreparedStatement. | |
| StatementEvent(PooledConnection con,
               PreparedStatement statement,
               SQLException exception)Constructs a StatementEventwith the specifiedPooledConnection,PreparedStatementandSQLException | |
| Method Summary | |
|---|---|
|  SQLException | getSQLException()Returns the SQLExceptionthe driver is about to throw | 
|  PreparedStatement | getStatement()Returns the PreparedStatementthat is being closed or is invalid | 
| 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 | 
|---|
public StatementEvent(PooledConnection con,
                      PreparedStatement statement)
StatementEvent with the specified PooledConnection and 
 PreparedStatement.  The SQLException contained in the event defaults to 
 null.
 
con - The PooledConnection that the closed or invalid
 PreparedStatementis associated with.statement - The PreparedStatement that is bieng closed or is invalid
 
IllegalArgumentException - if con is null.
public StatementEvent(PooledConnection con,
                      PreparedStatement statement,
                      SQLException exception)
StatementEvent with the specified PooledConnection, 
 PreparedStatement and SQLException
 
con - The PooledConnection that the closed or invalid PreparedStatement
 is associated with.statement - The PreparedStatement that is being closed or is invalidexception - The SQLException the driver is about to throw to 
                                                the application
IllegalArgumentException - if con is null.
 | Method Detail | 
|---|
public PreparedStatement getStatement()
PreparedStatement that is being closed or is invalid
 
PreparedStatement that is being closed or is invalid
 public SQLException getSQLException()
SQLException the driver is about to throw
 
SQLException the driver is about to throw
 | 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
Copyright 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.