| Package | Description |
|---|---|
| com.mysql.cj.jdbc | |
| com.mysql.cj.jdbc.ha | |
| com.mysql.cj.jdbc.result |
| Modifier and Type | Interface and Description |
|---|---|
interface |
JdbcPreparedStatement |
| Modifier and Type | Class and Description |
|---|---|
class |
CallableStatement
Representation of stored procedures for JDBC
|
class |
ClientPreparedStatement
A SQL Statement is pre-compiled and stored in a PreparedStatement object.
|
class |
ServerPreparedStatement
JDBC Interface for MySQL-4.1 and newer server-side PreparedStatements.
|
class |
StatementImpl
A Statement object is used for executing a static SQL statement and obtaining
the results produced by it.
|
| Modifier and Type | Field and Description |
|---|---|
private java.util.concurrent.CopyOnWriteArrayList<JdbcStatement> |
ConnectionImpl.openStatements
An array of currently open statements.
|
| Modifier and Type | Method and Description |
|---|---|
void |
ConnectionWrapper.registerStatement(JdbcStatement stmt) |
void |
ConnectionImpl.registerStatement(JdbcStatement stmt) |
void |
JdbcConnection.registerStatement(JdbcStatement stmt)
Register a Statement instance as open.
|
void |
ConnectionWrapper.unregisterStatement(JdbcStatement stmt) |
void |
ConnectionImpl.unregisterStatement(JdbcStatement stmt) |
void |
JdbcConnection.unregisterStatement(JdbcStatement stmt)
Remove the given statement from the list of open statements
|
| Modifier and Type | Method and Description |
|---|---|
void |
MultiHostMySQLConnection.registerStatement(JdbcStatement stmt) |
void |
MultiHostMySQLConnection.unregisterStatement(JdbcStatement stmt) |
| Modifier and Type | Method and Description |
|---|---|
void |
ResultSetImpl.setOwningStatement(JdbcStatement owningStatement) |
void |
ResultSetInternalMethods.setOwningStatement(JdbcStatement owningStatement)
Sets the statement that "owns" this result set (usually used when the
result set should internally "belong" to one statement, but is created
by another.
|