MySQL Connector/J size='-1'>5.1.6

Uses of Class
com.mysql.jdbc.StatementImpl

Packages that use StatementImpl
com.mysql.jdbc   
 

Uses of StatementImpl in com.mysql.jdbc
 

Subclasses of StatementImpl in com.mysql.jdbc
 class CallableStatement
          Representation of stored procedures for JDBC
 class JDBC4CallableStatement
           
 class JDBC4PreparedStatement
           
 class JDBC4ServerPreparedStatement
           
 class PreparedStatement
          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.
 

Fields in com.mysql.jdbc declared as StatementImpl
protected  StatementImpl ResultSetImpl.owningStatement
          The statement that created us
 

Methods in com.mysql.jdbc with parameters of type StatementImpl
protected static ResultSetImpl ResultSetImpl.getInstance(long updateCount, long updateID, ConnectionImpl conn, StatementImpl creatorStmt)
           
protected static ResultSetImpl ResultSetImpl.getInstance(java.lang.String catalog, Field[] fields, RowData tuples, ConnectionImpl conn, StatementImpl creatorStmt, boolean isUpdatable)
          Creates a result set instance that represents a query result -- We need to provide factory-style methods so we can support both JDBC3 (and older) and JDBC4 runtimes, otherwise the class verifier complains when it tries to load JDBC4-only interface classes that are present in JDBC4 method signatures.
protected  int StatementImpl.processMultiCountsAndKeys(StatementImpl batchedStatement, int updateCountCounter, int[] updateCounts)
           
 void ResultSetInternalMethods.setOwningStatement(StatementImpl 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.
 void ResultSetImpl.setOwningStatement(StatementImpl owningStatement)
           
 

Constructors in com.mysql.jdbc with parameters of type StatementImpl
JDBC4ResultSet(long updateCount, long updateID, ConnectionImpl conn, StatementImpl creatorStmt)
           
JDBC4ResultSet(java.lang.String catalog, Field[] fields, RowData tuples, ConnectionImpl conn, StatementImpl creatorStmt)
           
JDBC4UpdatableResultSet(java.lang.String catalog, Field[] fields, RowData tuples, ConnectionImpl conn, StatementImpl creatorStmt)
           
ResultSetImpl(long updateCount, long updateID, ConnectionImpl conn, StatementImpl creatorStmt)
          Create a result set for an executeUpdate statement.
ResultSetImpl(java.lang.String catalog, Field[] fields, RowData tuples, ConnectionImpl conn, StatementImpl creatorStmt)
          Creates a new ResultSet object.
UpdatableResultSet(java.lang.String catalog, Field[] fields, RowData tuples, ConnectionImpl conn, StatementImpl creatorStmt)
          Creates a new ResultSet object.
 


MySQL Connector/J size='-1'>5.1.6