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 SQLTypeInfoRDBMSStoreManager. getSQLTypeInfoForJDBCType(int jdbcType)Accessor for the SQL type info for the specified JDBC typeSQLTypeInfoRDBMSStoreManager. 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
Subclasses of SQLTypeInfo in org.datanucleus.store.rdbms.adapter Modifier and Type Class Description classDB2TypeInfoSQL Type info for DB2 datastores.classDerbyTypeInfoSQL Type info for Derby datastores.classFirebirdTypeInfoSQL Type info for Firebird datastores.classH2TypeInfoSQL Type info for H2 datastores.classHSQLTypeInfoSQL Type info for HSQLDB datastores.classInformixTypeInfoSQL Type info for Informix datastores.classMySQLTypeInfoSQL Type info for MySQL datastores.classNuoDBTypeInfoType info for NuoDB.classOracleTypeInfoSQL Type info for Oracle datastores.classPostgreSQLTypeInfoSQL Type info for PostgreSQL datastores.classSQLiteTypeInfoSQL Type info for SQLite datastores.classSQLServerTypeInfoSQL Type info for SQLServer datastores.classVirtuosoTypeInfoSQL Type info for Virtuoso datastores.Methods in org.datanucleus.store.rdbms.adapter that return types with arguments of type SQLTypeInfo Modifier and Type Method Description protected 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 booleanBaseDatastoreAdapter. 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.intBaseDatastoreAdapter. getUnlimitedLengthPrecisionValue(SQLTypeInfo typeInfo)Returns the precision value to be used when creating string columns of "unlimited" length.intDatastoreAdapter. getUnlimitedLengthPrecisionValue(SQLTypeInfo typeInfo)Returns the precision value to be used when creating string columns of "unlimited" length.intPointbaseAdapter. 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 SQLTypeInfoAbstractColumnMapping. getTypeInfo()Accessor for the (SQL) type info for this datastore type.SQLTypeInfoTinyIntColumnMapping. 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 SQLTypeInfoColumnImpl. typeInfoSQL 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 SQLTypeInfoColumn. getTypeInfo()Accessor for the type info for this column.SQLTypeInfoColumnImpl. getTypeInfo()Methods in org.datanucleus.store.rdbms.table with parameters of type SQLTypeInfo Modifier and Type Method Description ColumnColumn. setTypeInfo(SQLTypeInfo typeInfo)Mutator for the type information of the column.ColumnColumnImpl. setTypeInfo(SQLTypeInfo typeInfo)
-