Uses of Interface
com.j256.ormlite.support.CompiledStatement

Packages that use CompiledStatement
com.j256.ormlite.stmt SQL statement generation and processing. 
com.j256.ormlite.stmt.mapped Compiled SQL query statements. 
com.j256.ormlite.support Database support classes. 
 

Uses of CompiledStatement in com.j256.ormlite.stmt
 

Methods in com.j256.ormlite.stmt that return CompiledStatement
 CompiledStatement PreparedStmt.compile(DatabaseConnection databaseConnection, StatementBuilder.StatementType type)
          Create and return the associated compiled statement.
 CompiledStatement PreparedStmt.compile(DatabaseConnection databaseConnection, StatementBuilder.StatementType type, int resultFlags)
          Like compile(DatabaseConnection, StatementType) but allows to specify the result flags.
 

Constructors in com.j256.ormlite.stmt with parameters of type CompiledStatement
RawResultsImpl(ConnectionSource connectionSource, DatabaseConnection connection, String query, Class<?> clazz, CompiledStatement compiledStmt, String[] columnNames, GenericRowMapper<T> rowMapper, ObjectCache objectCache)
           
SelectIterator(Class<?> dataClass, Dao<T,ID> classDao, GenericRowMapper<T> rowMapper, ConnectionSource connectionSource, DatabaseConnection connection, CompiledStatement compiledStmt, String statement, ObjectCache objectCache)
          If the statement parameter is null then this won't log information
 

Uses of CompiledStatement in com.j256.ormlite.stmt.mapped
 

Methods in com.j256.ormlite.stmt.mapped that return CompiledStatement
 CompiledStatement MappedPreparedStmt.compile(DatabaseConnection databaseConnection, StatementBuilder.StatementType type)
           
 CompiledStatement MappedPreparedStmt.compile(DatabaseConnection databaseConnection, StatementBuilder.StatementType type, int resultFlags)
           
 

Uses of CompiledStatement in com.j256.ormlite.support
 

Methods in com.j256.ormlite.support that return CompiledStatement
 CompiledStatement DatabaseConnection.compileStatement(String statement, StatementBuilder.StatementType type, FieldType[] argFieldTypes)
          Compile and prepare the SQL statement for execution.
 CompiledStatement DatabaseConnection.compileStatement(String statement, StatementBuilder.StatementType type, FieldType[] argFieldTypes, int resultFlags)
          Like compileStatement(String, StatementType, FieldType[]) except the caller can specify the result flags.
 



This content is licensed by Gray Watson under the Creative Commons Attribution-Share Alike 3.0 License.