Uses of Class
com.j256.ormlite.table.TableInfo

Packages that use TableInfo
com.j256.ormlite.dao Database Access Object classes. 
com.j256.ormlite.stmt SQL statement generation and processing. 
com.j256.ormlite.stmt.mapped Compiled SQL query statements. 
 

Uses of TableInfo in com.j256.ormlite.dao
 

Fields in com.j256.ormlite.dao declared as TableInfo
protected  TableInfo<T,ID> BaseDaoImpl.tableInfo
           
 

Methods in com.j256.ormlite.dao that return TableInfo
 TableInfo<T,ID> BaseDaoImpl.getTableInfo()
          Used by internal classes to get the table information structure for the Dao's class.
 

Uses of TableInfo in com.j256.ormlite.stmt
 

Fields in com.j256.ormlite.stmt declared as TableInfo
protected  TableInfo<T,ID> StatementBuilder.tableInfo
           
 

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

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

Fields in com.j256.ormlite.stmt.mapped declared as TableInfo
protected  TableInfo<T,ID> BaseMappedStatement.tableInfo
           
 

Methods in com.j256.ormlite.stmt.mapped with parameters of type TableInfo
static
<T,ID> MappedUpdateId<T,ID>
MappedUpdateId.build(DatabaseType databaseType, TableInfo<T,ID> tableInfo)
           
static
<T,ID> MappedUpdate<T,ID>
MappedUpdate.build(DatabaseType databaseType, TableInfo<T,ID> tableInfo)
           
static
<T,ID> MappedRefresh<T,ID>
MappedRefresh.build(DatabaseType databaseType, TableInfo<T,ID> tableInfo)
           
static
<T,ID> MappedQueryForId<T,ID>
MappedQueryForId.build(DatabaseType databaseType, TableInfo<T,ID> tableInfo)
           
static
<T,ID> MappedDelete<T,ID>
MappedDelete.build(DatabaseType databaseType, TableInfo<T,ID> tableInfo)
           
static
<T,ID> MappedCreate<T,ID>
MappedCreate.build(DatabaseType databaseType, TableInfo<T,ID> tableInfo)
           
protected static
<T,ID> String
MappedQueryForId.buildStatement(DatabaseType databaseType, TableInfo<T,ID> tableInfo)
           
static
<T,ID> int
MappedDeleteCollection.deleteIds(DatabaseType databaseType, TableInfo<T,ID> tableInfo, DatabaseConnection databaseConnection, Collection<ID> ids, ObjectCache objectCache)
          Delete all of the objects in the collection.
static
<T,ID> int
MappedDeleteCollection.deleteObjects(DatabaseType databaseType, TableInfo<T,ID> tableInfo, DatabaseConnection databaseConnection, Collection<T> datas, ObjectCache objectCache)
          Delete all of the objects in the collection.
 

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



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