Uses of Interface
com.j256.ormlite.db.DatabaseType

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.fromDatabaseField(DatabaseType databaseType, String tableName, Field field, DatabaseField databaseField)
           
static DatabaseFieldConfig DatabaseFieldConfig.fromField(DatabaseType databaseType, String tableName, Field field)
          Create and return a config converted from a Field that may have one of the following annotations: DatabaseField, ForeignCollectionField, or javax.persistence...
 

Uses of DatabaseType in com.j256.ormlite.misc
 

Methods in com.j256.ormlite.misc with parameters of type DatabaseType
static
<T> T
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
<T> T
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, Dao<T,ID> dao)
           
QueryBuilder(DatabaseType databaseType, TableInfo<T,ID> tableInfo, Dao<T,ID> dao)
           
StatementBuilder(DatabaseType databaseType, TableInfo<T,ID> tableInfo, Dao<T,ID> dao, StatementBuilder.StatementType type)
           
StatementExecutor(DatabaseType databaseType, TableInfo<T,ID> tableInfo, Dao<T,ID> dao)
          Provides statements for various SQL operations.
UpdateBuilder(DatabaseType databaseType, TableInfo<T,ID> tableInfo, Dao<T,ID> dao)
           
 

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

Methods in com.j256.ormlite.stmt.mapped with parameters of type DatabaseType
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> 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)
           
static
<T,ID> MappedQueryForId<T,ID>
MappedQueryForId.build(DatabaseType databaseType, TableInfo<T,ID> tableInfo, FieldType idFieldType)
           
protected static
<T,ID> String
MappedQueryForId.buildStatement(DatabaseType databaseType, TableInfo<T,ID> tableInfo, FieldType idFieldType)
           
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.
 int MappedCreate.insert(DatabaseType databaseType, DatabaseConnection databaseConnection, T data, ObjectCache objectCache)
          Create an object in the database.
 

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, BaseDaoImpl<T,ID> baseDaoImpl, DatabaseTableConfig<T> tableConfig)
          Creates a holder of information about a table/class.
 



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