Uses of Class
com.j256.ormlite.field.DataType

Packages that use DataType
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.stmt SQL statement generation and processing. 
 

Uses of DataType in com.j256.ormlite.dao
 

Methods in com.j256.ormlite.dao with parameters of type DataType
 GenericRawResults<Object[]> Dao.queryRaw(String query, DataType[] columnTypes, String... arguments)
          Similar to the Dao.queryRaw(String, String...) but instead of an array of String results being returned by the iterator, this uses the column-types parameter to return an array of Objects instead.
 GenericRawResults<Object[]> BaseDaoImpl.queryRaw(String query, DataType[] columnTypes, String... arguments)
           
 

Uses of DataType in com.j256.ormlite.db
 

Methods in com.j256.ormlite.db with parameters of type DataType
 FieldConverter DatabaseType.getFieldConverter(DataType dataType)
          Return the FieldConverter to associate with the DataType.
 FieldConverter BaseSqliteDatabaseType.getFieldConverter(DataType dataType)
           
 FieldConverter BaseDatabaseType.getFieldConverter(DataType dataType)
           
 

Uses of DataType in com.j256.ormlite.field
 

Methods in com.j256.ormlite.field that return DataType
 DataType FieldType.getDataType()
           
 DataType DatabaseFieldConfig.getDataType()
           
static DataType DataType.lookupClass(Class<?> dataClass)
          Static method that returns the DataType associated with the class argument or UNKNOWN if not found.
static DataType DataType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DataType[] DataType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.j256.ormlite.field with parameters of type DataType
 void DatabaseFieldConfig.setDataType(DataType dataType)
           
 

Constructors in com.j256.ormlite.field with parameters of type DataType
DatabaseFieldConfig(String fieldName, String columnName, DataType dataType, String defaultValue, int width, boolean canBeNull, boolean id, boolean generatedId, String generatedIdSequence, boolean foreign, DatabaseTableConfig<?> foreignTableConfig, boolean useGetSet, Enum<?> unknownEnumValue, boolean throwIfNull, String format, boolean unique, String indexName, String uniqueIndexName, boolean autoRefresh)
           
 

Uses of DataType in com.j256.ormlite.stmt
 

Methods in com.j256.ormlite.stmt with parameters of type DataType
 GenericRawResults<Object[]> StatementExecutor.queryRaw(ConnectionSource connectionSource, String query, DataType[] columnTypes, String[] arguments)
          Return a results object associated with an internal iterator that returns Object[] results.
 



Copyright © 2011. All Rights Reserved.