|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DataType | |
---|---|
com.j256.ormlite.dao | Database Access Object classes. |
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[]> |
RuntimeExceptionDao.queryRaw(String query,
DataType[] columnTypes,
String... arguments)
|
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.field |
---|
Fields in com.j256.ormlite.field declared as DataType | |
---|---|
static DataType |
DatabaseFieldConfig.DEFAULT_DATA_TYPE
|
Methods in com.j256.ormlite.field that return DataType | |
---|---|
DataType |
DatabaseFieldConfig.getDataType()
|
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,
int maxForeignAutoRefreshLevel,
int maxForeignCollectionLevel)
|
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,
ObjectCache objectCache)
Return a results object associated with an internal iterator that returns Object[] results. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |