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

Uses of Class
com.mysql.jdbc.PreparedStatement

Packages that use PreparedStatement
com.mysql.jdbc   
 

Uses of PreparedStatement in com.mysql.jdbc
 

Subclasses of PreparedStatement in com.mysql.jdbc
 class CallableStatement
          Representation of stored procedures for JDBC
 class JDBC4CallableStatement
           
 class JDBC4PreparedStatement
           
 class JDBC4ServerPreparedStatement
           
 class ServerPreparedStatement
          JDBC Interface for MySQL-4.1 and newer server-side PreparedStatements.
 

Fields in com.mysql.jdbc declared as PreparedStatement
protected  PreparedStatement UpdatableResultSet.inserter
          PreparedStatement used to insert data
protected  PreparedStatement UpdatableResultSet.updater
          PreparedStatement used to delete data
 

Methods in com.mysql.jdbc that return PreparedStatement
protected static PreparedStatement PreparedStatement.getInstance(ConnectionImpl conn, java.lang.String catalog)
          Creates a prepared statement instance -- 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 static PreparedStatement PreparedStatement.getInstance(ConnectionImpl conn, java.lang.String sql, java.lang.String catalog)
          Creates a prepared statement instance -- 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 static PreparedStatement PreparedStatement.getInstance(ConnectionImpl conn, java.lang.String sql, java.lang.String catalog, com.mysql.jdbc.PreparedStatement.ParseInfo cachedParseInfo)
          Creates a prepared statement instance -- 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.
 

Methods in com.mysql.jdbc with parameters of type PreparedStatement
 void ResultSetInternalMethods.setStatementUsedForFetchingRows(PreparedStatement stmt)
           
 void ResultSetImpl.setStatementUsedForFetchingRows(PreparedStatement stmt)
           
 


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