Uses of Class
org.datanucleus.store.rdbms.schema.SQLTypeInfo
-
Packages that use SQLTypeInfo Package Description 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.column Package containing mappings for column (JDBC) 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 Modifier and Type Method Description SQLTypeInfo
RDBMSStoreManager. getSQLTypeInfoForJDBCType(int jdbcType)
Accessor for the SQL type info for the specified JDBC typeSQLTypeInfo
RDBMSStoreManager. getSQLTypeInfoForJDBCType(int jdbcType, java.lang.String sqlType)
Accessor for the SQL type info for the specified JDBC type. -
Uses of SQLTypeInfo in org.datanucleus.store.rdbms.adapter
Subclasses of SQLTypeInfo in org.datanucleus.store.rdbms.adapter Modifier and Type Class Description class
CloudSpannerTypeInfo
SQL Type info for Google Cloud Spanner datastore.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
MySQLTypeInfo
SQL Type info for MySQL datastores.class
NuoDBTypeInfo
Type info for NuoDB.class
OracleTypeInfo
SQL Type info for Oracle datastores.class
PostgreSQLTypeInfo
SQL Type info for PostgreSQL datastores.class
SQLiteTypeInfo
SQL Type info for SQLite datastores.class
SQLServerTypeInfo
SQL Type info for SQLServer datastores.class
VirtuosoTypeInfo
SQL Type info for Virtuoso datastores.Methods in org.datanucleus.store.rdbms.adapter that return SQLTypeInfo Modifier and Type Method Description SQLTypeInfo
BaseDatastoreAdapter. newSQLTypeInfo(java.sql.ResultSet rs)
SQLTypeInfo
CloudSpannerAdapter. newSQLTypeInfo(java.sql.ResultSet rs)
SQLTypeInfo
DatastoreAdapter. newSQLTypeInfo(java.sql.ResultSet rs)
Create a new SQL type info from the current row of the passed ResultSet.SQLTypeInfo
DB2Adapter. newSQLTypeInfo(java.sql.ResultSet rs)
SQLTypeInfo
DerbyAdapter. newSQLTypeInfo(java.sql.ResultSet rs)
SQLTypeInfo
FirebirdAdapter. newSQLTypeInfo(java.sql.ResultSet rs)
SQLTypeInfo
H2Adapter. newSQLTypeInfo(java.sql.ResultSet rs)
SQLTypeInfo
HSQLAdapter. newSQLTypeInfo(java.sql.ResultSet rs)
SQLTypeInfo
InformixAdapter. newSQLTypeInfo(java.sql.ResultSet rs)
SQLTypeInfo
MySQLAdapter. newSQLTypeInfo(java.sql.ResultSet rs)
SQLTypeInfo
PostgreSQLAdapter. newSQLTypeInfo(java.sql.ResultSet rs)
SQLTypeInfo
SQLAnywhereAdapter. newSQLTypeInfo(java.sql.ResultSet rs)
SQLTypeInfo
SQLServerAdapter. newSQLTypeInfo(java.sql.ResultSet rs)
SQLTypeInfo
SybaseAdapter. newSQLTypeInfo(java.sql.ResultSet rs)
SQLTypeInfo
VirtuosoAdapter. newSQLTypeInfo(java.sql.ResultSet rs)
Methods in org.datanucleus.store.rdbms.adapter that return types with arguments of type SQLTypeInfo Modifier and Type Method Description protected java.util.Collection<SQLTypeInfo>
BaseDatastoreAdapter. 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 Modifier and Type Method Description protected boolean
BaseDatastoreAdapter. 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
BaseDatastoreAdapter. getUnlimitedLengthPrecisionValue(SQLTypeInfo typeInfo)
Returns the precision value to be used when creating string columns of "unlimited" length.int
DatastoreAdapter. 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. -
Uses of SQLTypeInfo in org.datanucleus.store.rdbms.mapping.column
Methods in org.datanucleus.store.rdbms.mapping.column that return SQLTypeInfo Modifier and Type Method Description SQLTypeInfo
AbstractColumnMapping. getTypeInfo()
Accessor for the (SQL) type info for this datastore type.SQLTypeInfo
TinyIntColumnMapping. getTypeInfo()
-
Uses of SQLTypeInfo in org.datanucleus.store.rdbms.table
Fields in org.datanucleus.store.rdbms.table declared as SQLTypeInfo Modifier and Type Field Description protected SQLTypeInfo
ColumnImpl. typeInfo
SQL Type info for the JDBC type being stored in this columnMethods in org.datanucleus.store.rdbms.table that return SQLTypeInfo Modifier and Type Method Description SQLTypeInfo
Column. getTypeInfo()
Accessor for the type info for this column.SQLTypeInfo
ColumnImpl. getTypeInfo()
Methods in org.datanucleus.store.rdbms.table with parameters of type SQLTypeInfo Modifier and Type Method Description Column
Column. setTypeInfo(SQLTypeInfo typeInfo)
Mutator for the type information of the column.Column
ColumnImpl. setTypeInfo(SQLTypeInfo typeInfo)
-