StatementEvent (Java SE 13 & JDK 13 )
- All Implemented Interfaces:
Serializable
public class StatementEvent extends EventObject
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.
- Since:
- 1.6
- See Also:
- Serialized Form
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and Type Method Description SQLExceptiongetSQLException()Returns the
SQLExceptionthe driver is about to throwPreparedStatementgetStatement()Returns the
PreparedStatementthat is being closed or is invalid
-
Constructor Details
-
StatementEvent
Constructs a
StatementEventwith the specifiedPooledConnectionandPreparedStatement. TheSQLExceptioncontained in the event defaults to null.- Parameters:
con- ThePooledConnectionthat the closed or invalidPreparedStatementis associated with.statement- ThePreparedStatementthat is being closed or is invalid- Throws:
IllegalArgumentException- ifconis null.- Since:
- 1.6
-
StatementEvent
Constructs a
StatementEventwith the specifiedPooledConnection,PreparedStatementandSQLException- Parameters:
con- ThePooledConnectionthat the closed or invalidPreparedStatementis associated with.statement- ThePreparedStatementthat is being closed or is invalidexception- TheSQLExceptionthe driver is about to throw to the application- Throws:
IllegalArgumentException- ifconis null.- Since:
- 1.6
-
-
Method Details
-
getStatement
Returns the
PreparedStatementthat is being closed or is invalid- Returns:
- The
PreparedStatementthat is being closed or is invalid - Since:
- 1.6
-
getSQLException
Returns the
SQLExceptionthe driver is about to throw- Returns:
- The
SQLExceptionthe driver is about to throw - Since:
- 1.6
-
Report a bug or suggest an enhancement
For further API reference and developer documentation see the Java SE Documentation, which contains more detailed, developer-targeted descriptions with conceptual overviews, definitions of terms, workarounds, and working code examples.
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 1993, 2019, Oracle and/or its affiliates, 500 Oracle Parkway, Redwood Shores, CA 94065 USA.
All rights reserved. Use is subject to license terms and the documentation redistribution policy.