|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use SQLTypeInfo | |
|---|---|
| org.datanucleus.store.rdbms | Package providing management of the persistence to RDBMS datastores. |
| org.datanucleus.store.rdbms.adapter | Provides mappings of all supported databases to aspects of the database that determines the SQL generation. |
| org.datanucleus.store.rdbms.mapping | Package containing mappings for datastore (JDBC) types. |
| org.datanucleus.store.rdbms.mapping.oracle | Package containing mappings for Oracle datastores, extending on the mappings found in packages org.datanucleus.store.mapped.mapping and org.datanucleus.store.rdbms.mapping. |
| org.datanucleus.store.rdbms.schema | Provides a definition of the schema in the datastore, including tables, columns and types. |
| org.datanucleus.store.rdbms.table | Provides the internal DataNucleus definition of a table/view and its columns. |
| Uses of SQLTypeInfo in org.datanucleus.store.rdbms |
|---|
| Methods in org.datanucleus.store.rdbms that return SQLTypeInfo | |
|---|---|
SQLTypeInfo |
RDBMSStoreManager.getSQLTypeInfoForJDBCType(int jdbcType)
Accessor for the SQL type info for the specified JDBC type |
SQLTypeInfo |
RDBMSStoreManager.getSQLTypeInfoForJDBCType(int jdbcType,
String sqlType)
Accessor for the SQL type info for the specified JDBC type. |
| Uses of SQLTypeInfo in org.datanucleus.store.rdbms.adapter |
|---|
| Methods in org.datanucleus.store.rdbms.adapter that return SQLTypeInfo | |
|---|---|
SQLTypeInfo |
H2Adapter.newSQLTypeInfo(ResultSet rs)
|
SQLTypeInfo |
InformixAdapter.newSQLTypeInfo(ResultSet rs)
|
SQLTypeInfo |
DB2Adapter.newSQLTypeInfo(ResultSet rs)
|
SQLTypeInfo |
RDBMSAdapter.newSQLTypeInfo(ResultSet rs)
Create a new SQL type info from the current row of the passed ResultSet. |
SQLTypeInfo |
MySQLAdapter.newSQLTypeInfo(ResultSet rs)
|
SQLTypeInfo |
HSQLAdapter.newSQLTypeInfo(ResultSet rs)
|
SQLTypeInfo |
McKoiAdapter.newSQLTypeInfo(ResultSet rs)
|
SQLTypeInfo |
PostgreSQLAdapter.newSQLTypeInfo(ResultSet rs)
|
SQLTypeInfo |
MSSQLServerAdapter.newSQLTypeInfo(ResultSet rs)
|
SQLTypeInfo |
SybaseAdapter.newSQLTypeInfo(ResultSet rs)
|
SQLTypeInfo |
DerbyAdapter.newSQLTypeInfo(ResultSet rs)
|
SQLTypeInfo |
FirebirdAdapter.newSQLTypeInfo(ResultSet rs)
|
SQLTypeInfo |
OracleAdapter.newSQLTypeInfo(ResultSet rs)
|
SQLTypeInfo |
DatabaseAdapter.newSQLTypeInfo(ResultSet rs)
|
| Methods in org.datanucleus.store.rdbms.adapter that return types with arguments of type SQLTypeInfo | |
|---|---|
protected Collection<SQLTypeInfo> |
DatabaseAdapter.getSQLTypeInfoForJdbcType(org.datanucleus.store.schema.StoreSchemaHandler handler,
org.datanucleus.store.connection.ManagedConnection mconn,
short jdbcTypeNumber)
Accessor for the SQLType info for the specified JDBC type and the SQL type name. |
| Methods in org.datanucleus.store.rdbms.adapter with parameters of type SQLTypeInfo | |
|---|---|
protected void |
DatabaseAdapter.addSQLTypeForJDBCType(org.datanucleus.store.schema.StoreSchemaHandler handler,
org.datanucleus.store.connection.ManagedConnection mconn,
short jdbcTypeNumber,
SQLTypeInfo sqlType,
boolean addIfNotPresent)
Convenience method for use by adapters to add their own fake JDBC/SQL types in where the JDBC driver doesn't provide some type. |
int |
RDBMSAdapter.getUnlimitedLengthPrecisionValue(SQLTypeInfo typeInfo)
Returns the precision value to be used when creating string columns of "unlimited" length. |
int |
PointbaseAdapter.getUnlimitedLengthPrecisionValue(SQLTypeInfo typeInfo)
Returns the precision value to be used when creating string columns of "unlimited" length. |
int |
DatabaseAdapter.getUnlimitedLengthPrecisionValue(SQLTypeInfo typeInfo)
Returns the precision value to be used when creating string columns of "unlimited" length. |
| Uses of SQLTypeInfo in org.datanucleus.store.rdbms.mapping |
|---|
| Methods in org.datanucleus.store.rdbms.mapping that return SQLTypeInfo | |
|---|---|
SQLTypeInfo |
DateRDBMSMapping.getTypeInfo()
|
SQLTypeInfo |
FloatRDBMSMapping.getTypeInfo()
|
SQLTypeInfo |
LongVarBinaryRDBMSMapping.getTypeInfo()
Accessor for the type info of the JDBC type being represented. |
SQLTypeInfo |
DecimalRDBMSMapping.getTypeInfo()
|
SQLTypeInfo |
DatalinkRDBMSMapping.getTypeInfo()
|
SQLTypeInfo |
NCharRDBMSMapping.getTypeInfo()
|
SQLTypeInfo |
IntegerRDBMSMapping.getTypeInfo()
|
SQLTypeInfo |
VarBinaryRDBMSMapping.getTypeInfo()
Accessor for the type info of the JDBC type being represented. |
SQLTypeInfo |
SqlXmlRDBMSMapping.getTypeInfo()
|
SQLTypeInfo |
LongVarcharRDBMSMapping.getTypeInfo()
|
SQLTypeInfo |
RealRDBMSMapping.getTypeInfo()
|
SQLTypeInfo |
TimestampRDBMSMapping.getTypeInfo()
Accessor for the type info for this column. |
SQLTypeInfo |
BlobRDBMSMapping.getTypeInfo()
Accessor for the RDBMS BLOB type being represented. |
abstract SQLTypeInfo |
RDBMSMapping.getTypeInfo()
Accessor for the (SQL) type info for this datastore type. |
SQLTypeInfo |
ClobRDBMSMapping.getTypeInfo()
Accessor for the type info for this datastore field |
SQLTypeInfo |
VarCharRDBMSMapping.getTypeInfo()
Accessor for datastore type info for this mapping. |
SQLTypeInfo |
TinyIntRDBMSMapping.getTypeInfo()
|
SQLTypeInfo |
BigIntRDBMSMapping.getTypeInfo()
|
SQLTypeInfo |
SmallIntRDBMSMapping.getTypeInfo()
Accessor for type info |
SQLTypeInfo |
BooleanRDBMSMapping.getTypeInfo()
|
SQLTypeInfo |
DoubleRDBMSMapping.getTypeInfo()
|
SQLTypeInfo |
BitRDBMSMapping.getTypeInfo()
|
SQLTypeInfo |
NVarcharRDBMSMapping.getTypeInfo()
|
SQLTypeInfo |
TimeRDBMSMapping.getTypeInfo()
|
SQLTypeInfo |
CharRDBMSMapping.getTypeInfo()
|
SQLTypeInfo |
NumericRDBMSMapping.getTypeInfo()
|
| Uses of SQLTypeInfo in org.datanucleus.store.rdbms.mapping.oracle |
|---|
| Methods in org.datanucleus.store.rdbms.mapping.oracle that return SQLTypeInfo | |
|---|---|
SQLTypeInfo |
OracleClobRDBMSMapping.getTypeInfo()
|
SQLTypeInfo |
XMLTypeRDBMSMapping.getTypeInfo()
|
SQLTypeInfo |
OracleBlobRDBMSMapping.getTypeInfo()
|
| Uses of SQLTypeInfo in org.datanucleus.store.rdbms.schema |
|---|
| Subclasses of SQLTypeInfo in org.datanucleus.store.rdbms.schema | |
|---|---|
class |
DB2TypeInfo
SQL Type info for DB2 datastores. |
class |
DerbyTypeInfo
SQL Type info for Derby datastores. |
class |
FirebirdTypeInfo
SQL Type info for Firebird datastores. |
class |
H2TypeInfo
SQL Type info for H2 datastores. |
class |
HSQLTypeInfo
SQL Type info for HSQLDB datastores. |
class |
InformixTypeInfo
SQL Type info for Informix datastores. |
class |
McKoiTypeInfo
SQL Type info for McKoi datastores. |
class |
MSSQLTypeInfo
SQL Type info for MSSQL datastores. |
class |
MySQLTypeInfo
SQL Type info for MySQL datastores. |
class |
OracleTypeInfo
SQL Type info for Oracle datastores. |
class |
PostgresqlTypeInfo
SQL Type info for PostgreSQL datastores. |
class |
SQLiteTypeInfo
SQL Type info for SQLite datastores. |
| Uses of SQLTypeInfo in org.datanucleus.store.rdbms.table |
|---|
| Fields in org.datanucleus.store.rdbms.table declared as SQLTypeInfo | |
|---|---|
protected SQLTypeInfo |
ColumnImpl.typeInfo
SQL Type info for the JDBC type being stored in this column |
| Methods in org.datanucleus.store.rdbms.table that return SQLTypeInfo | |
|---|---|
SQLTypeInfo |
ColumnImpl.getTypeInfo()
|
SQLTypeInfo |
Column.getTypeInfo()
Accessor for the type info for this column. |
| Methods in org.datanucleus.store.rdbms.table with parameters of type SQLTypeInfo | |
|---|---|
Column |
ColumnImpl.setTypeInfo(SQLTypeInfo typeInfo)
|
Column |
Column.setTypeInfo(SQLTypeInfo typeInfo)
Mutator for the type information of the column. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||