|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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
|
MappedUpdateId.build(DatabaseType databaseType,
TableInfo<T,ID> tableInfo)
|
|
static
|
MappedUpdate.build(DatabaseType databaseType,
TableInfo<T,ID> tableInfo)
|
|
static
|
MappedRefresh.build(DatabaseType databaseType,
TableInfo<T,ID> tableInfo)
|
|
static
|
MappedQueryForId.build(DatabaseType databaseType,
TableInfo<T,ID> tableInfo)
|
|
static
|
MappedDelete.build(DatabaseType databaseType,
TableInfo<T,ID> tableInfo)
|
|
static
|
MappedCreate.build(DatabaseType databaseType,
TableInfo<T,ID> tableInfo)
|
|
protected static
|
MappedQueryForId.buildStatement(DatabaseType databaseType,
TableInfo<T,ID> tableInfo)
|
|
static
|
MappedDeleteCollection.deleteIds(DatabaseType databaseType,
TableInfo<T,ID> tableInfo,
DatabaseConnection databaseConnection,
Collection<ID> ids)
Delete all of the objects in the collection. |
|
static
|
MappedDeleteCollection.deleteObjects(DatabaseType databaseType,
TableInfo<T,ID> tableInfo,
DatabaseConnection databaseConnection,
Collection<T> datas)
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,
Integer limit,
StatementBuilder.StatementType type)
|
|
MappedQueryForId(TableInfo<T,ID> tableInfo,
String statement,
FieldType[] argFieldTypes,
FieldType[] resultsFieldTypes,
String label)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |