Uses of Class
com.j256.ormlite.stmt.StatementBuilder.StatementType

Packages that use StatementBuilder.StatementType
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 StatementBuilder.StatementType in com.j256.ormlite.stmt
 

Fields in com.j256.ormlite.stmt declared as StatementBuilder.StatementType
protected  StatementBuilder.StatementType StatementBuilder.type
           
 

Methods in com.j256.ormlite.stmt that return StatementBuilder.StatementType
 StatementBuilder.StatementType PreparedStmt.getType()
          Return the type of the statement for internal consistency checking.
static StatementBuilder.StatementType StatementBuilder.StatementType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static StatementBuilder.StatementType[] StatementBuilder.StatementType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.j256.ormlite.stmt with parameters of type StatementBuilder.StatementType
 CompiledStatement PreparedStmt.compile(DatabaseConnection databaseConnection, StatementBuilder.StatementType type)
          Create and return the associated compiled statement.
 

Constructors in com.j256.ormlite.stmt with parameters of type StatementBuilder.StatementType
StatementBuilder(DatabaseType databaseType, TableInfo<T,ID> tableInfo, StatementBuilder.StatementType type)
          Provides statements for various SQL operations.
 

Uses of StatementBuilder.StatementType in com.j256.ormlite.stmt.mapped
 

Methods in com.j256.ormlite.stmt.mapped that return StatementBuilder.StatementType
 StatementBuilder.StatementType MappedPreparedStmt.getType()
           
 

Methods in com.j256.ormlite.stmt.mapped with parameters of type StatementBuilder.StatementType
 CompiledStatement MappedPreparedStmt.compile(DatabaseConnection databaseConnection, StatementBuilder.StatementType type)
           
 

Constructors in com.j256.ormlite.stmt.mapped with parameters of type StatementBuilder.StatementType
MappedPreparedStmt(TableInfo<T,ID> tableInfo, String statement, FieldType[] argFieldTypes, FieldType[] resultFieldTypes, ArgumentHolder[] argHolders, Integer limit, StatementBuilder.StatementType type)
           
 

Uses of StatementBuilder.StatementType in com.j256.ormlite.support
 

Methods in com.j256.ormlite.support with parameters of type StatementBuilder.StatementType
 CompiledStatement DatabaseConnection.compileStatement(String statement, StatementBuilder.StatementType type, FieldType[] argfieldTypes)
          Compile and prepare the SQL statement for execution.
 



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