|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DatabaseType | |
---|---|
com.j256.ormlite.dao | Database Access Object classes. |
com.j256.ormlite.db | Per-database type and SQL information. |
com.j256.ormlite.field | Object field information. |
com.j256.ormlite.misc | Miscellaneous classes. |
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. |
com.j256.ormlite.table | Object table information. |
Uses of DatabaseType in com.j256.ormlite.dao |
---|
Fields in com.j256.ormlite.dao declared as DatabaseType | |
---|---|
protected DatabaseType |
BaseDaoImpl.databaseType
|
Uses of DatabaseType in com.j256.ormlite.db |
---|
Classes in com.j256.ormlite.db that implement DatabaseType | |
---|---|
class |
BaseDatabaseType
Base class for all of the DatabaseType classes that provide the per-database type functionality to create
tables and build queries. |
class |
BaseSqliteDatabaseType
Sqlite database type information used to create the tables, etc.. |
Uses of DatabaseType in com.j256.ormlite.field |
---|
Methods in com.j256.ormlite.field with parameters of type DatabaseType | |
---|---|
static DatabaseFieldConfig |
DatabaseFieldConfig.fromField(DatabaseType databaseType,
String tableName,
Field field)
Create and return a config converted from a Field that may have either a DatabaseField annotation
or the javax.persistence annotations. |
Uses of DatabaseType in com.j256.ormlite.misc |
---|
Methods in com.j256.ormlite.misc with parameters of type DatabaseType | ||
---|---|---|
static
|
TransactionManager.callInTransaction(DatabaseConnection connection,
boolean saved,
DatabaseType databaseType,
Callable<T> callable)
Same as TransactionManager.callInTransaction(Callable) except as a static method on a connection. |
|
static
|
TransactionManager.callInTransaction(DatabaseConnection connection,
DatabaseType databaseType,
Callable<T> callable)
Same as TransactionManager.callInTransaction(Callable) except as a static method on a connection. |
|
static DatabaseFieldConfig |
JavaxPersistence.createFieldConfig(DatabaseType databaseType,
Field field)
Create a field config from the javax.persistence annotations associated with the field argument. |
Uses of DatabaseType in com.j256.ormlite.stmt |
---|
Fields in com.j256.ormlite.stmt declared as DatabaseType | |
---|---|
protected DatabaseType |
StatementBuilder.databaseType
|
Constructors in com.j256.ormlite.stmt with parameters of type DatabaseType | |
---|---|
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 DatabaseType in com.j256.ormlite.stmt.mapped |
---|
Methods in com.j256.ormlite.stmt.mapped with parameters of type DatabaseType | ||
---|---|---|
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. |
Uses of DatabaseType in com.j256.ormlite.support |
---|
Methods in com.j256.ormlite.support that return DatabaseType | |
---|---|
DatabaseType |
ConnectionSource.getDatabaseType()
Return the DatabaseTypre associated with this connection. |
Uses of DatabaseType in com.j256.ormlite.table |
---|
Methods in com.j256.ormlite.table with parameters of type DatabaseType | |
---|---|
FieldType[] |
DatabaseTableConfig.getFieldTypes(DatabaseType databaseType)
Return the field types associated with this configuration. |
Constructors in com.j256.ormlite.table with parameters of type DatabaseType | |
---|---|
TableInfo(DatabaseType databaseType,
Dao<T,ID> dao,
DatabaseTableConfig<T> tableConfig)
Creates a holder of information about a table/class. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |