Serializablepublic class StatementEvent extends EventObject
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.source
| Constructor | Description | 
|---|---|
| StatementEvent | Constructs a  StatementEventwith the specifiedPooledConnectionandPreparedStatement. | 
| StatementEvent | Constructs a  StatementEventwith the specifiedPooledConnection,PreparedStatementandSQLException | 
| Modifier and Type | Method | Description | 
|---|---|---|
| SQLException | getSQLException() | Returns the  SQLExceptionthe driver is about to throw | 
| PreparedStatement | getStatement() | Returns the  PreparedStatementthat is being closed or is invalid | 
getSource, toString
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 being closed or is invalidIllegalArgumentException - 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 applicationIllegalArgumentException - if con is null.public PreparedStatement getStatement()
PreparedStatement that is being closed or is invalidPreparedStatement that is being closed or is invalidpublic SQLException getSQLException()
SQLException the driver is about to throwSQLException the driver is about to throw
    © 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
    https://docs.oracle.com/en/java/javase/21/docs/api/java.sql/javax/sql/StatementEvent.html