| Package | Description |
|---|---|
| java.sql |
Provides the API for accessing and processing data stored in a data source (usually a relational database) using the Java
TM programming language.
|
| javax.sql |
Provides the API for server side data source access and processing from the Java
TM programming language.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
CallableStatement
The interface used to execute SQL stored procedures.
|
| Modifier and Type | Method and Description |
|---|---|
PreparedStatement |
Connection.prepareStatement(String
Creates a
PreparedStatement object for sending parameterized SQL statements to the database.
|
PreparedStatement |
Connection.prepareStatement(String
Creates a default
PreparedStatement object that has the capability to retrieve auto-generated keys.
|
PreparedStatement |
Connection.prepareStatement(String
Creates a default
PreparedStatement object capable of returning the auto-generated keys designated by the given array.
|
PreparedStatement |
Connection.prepareStatement(String
Creates a
PreparedStatement object that will generate
ResultSet objects with the given type and concurrency.
|
PreparedStatement |
Connection.prepareStatement(String
Creates a
PreparedStatement object that will generate
ResultSet objects with the given type, concurrency, and holdability.
|
PreparedStatement |
Connection.prepareStatement(String
Creates a default
PreparedStatement object capable of returning the auto-generated keys designated by the given array.
|
| Modifier and Type | Method and Description |
|---|---|
PreparedStatement |
StatementEvent.getStatement()
Returns the
PreparedStatement that is being closed or is invalid
|
| Constructor and Description | |
|---|---|
StatementEvent(PooledConnection
Constructs a
StatementEvent with the specified
PooledConnection and
PreparedStatement.
|
|
StatementEvent(PooledConnection
Constructs a
StatementEvent with the specified
PooledConnection,
PreparedStatement and
SQLException
|