org.datanucleus.store.rdbms.adapter
Class DatabaseAdapter

java.lang.Object
  extended by org.datanucleus.store.rdbms.adapter.DatabaseAdapter
All Implemented Interfaces:
org.datanucleus.store.mapped.DatastoreAdapter, RDBMSAdapter
Direct Known Subclasses:
DB2Adapter, DerbyAdapter, FirebirdAdapter, H2Adapter, HSQLAdapter, InformixAdapter, McKoiAdapter, MSSQLServerAdapter, MySQLAdapter, OracleAdapter, PointbaseAdapter, PostgreSQLAdapter, SAPDBAdapter, SQLiteAdapter, SybaseAdapter, TimesTenAdapter

public class DatabaseAdapter
extends Object
implements RDBMSAdapter

Provides methods for adapting SQL language elements to a specific vendor's database. A database adapter is primarily used to map generic JDBC data types and SQL identifiers to specific types/identifiers suitable for the database in use.

Each database adapter corresponds to a particular combination of database, database version, driver, and driver version, as provided by the driver's own metadata. Database adapters cannot be constructed directly, but must be obtained using the RDBMSAdapterFactory class.

See Also:
RDBMSAdapterFactory, DatabaseMetaData

Field Summary
protected  String catalogSeparator
          The String used to separate catalog and table name.
protected  int datastoreMajorVersion
          The major version number of the underlying datastore.
protected  int datastoreMinorVersion
          The minor version number of the underlying datastore.
protected  String datastoreProductName
          The product name of the underlying datastore.
protected  String datastoreProductVersion
          The version number of the underlying datastore as a string.
protected  int datastoreRevisionVersion
          The revision version number of the underlying datastore.
protected  int driverMajorVersion
          The major version number of the underlying driver.
protected  int driverMinorVersion
          The minor version number of the underlying driver.
protected  String driverName
          the JDBC driver name
protected  String driverVersion
          the JDBC driver version
protected  String identifierQuoteString
          The String used to quote identifiers.
protected static org.datanucleus.util.Localiser LOCALISER
           
protected static org.datanucleus.util.Localiser LOCALISER_BASE
           
protected  int maxColumnNameLength
          The maximum length to be used for a column name.
protected  int maxConstraintNameLength
          The maximum length to be used for a table constraint name.
protected  int maxIndexNameLength
          The maximum length to be used for an index name.
protected  int maxTableNameLength
          The maximum length to be used for a table name.
protected  Map<String,Object> properties
          Optional properties controlling the configuration.
protected  HashSet<String> reservedKeywords
          The set of reserved keywords for this datastore.
protected  Collection<String> supportedOptions
          Supported option names.
 
Fields inherited from interface org.datanucleus.store.rdbms.adapter.RDBMSAdapter
ACCESS_PARENTQUERY_IN_SUBQUERY_JOINED, ALTER_TABLE_DROP_CONSTRAINT_SYNTAX, ALTER_TABLE_DROP_FOREIGN_KEY_CONSTRAINT, ANSI_CROSSJOIN_SYNTAX, ANSI_JOIN_SYNTAX, AUTO_INCREMENT_COLUMN_TYPE_SPECIFICATION, AUTO_INCREMENT_KEYS_NULL_SPECIFICATION, AUTO_INCREMENT_PK_IN_CREATE_TABLE_COLUMN_DEF, BLOB_SET_USING_SETSTRING, CHAR_COLUMNS_PADDED_WITH_SPACES, CHECK_IN_CREATE_STATEMENTS, CHECK_IN_END_CREATE_STATEMENTS, CLOB_SET_USING_SETSTRING, CREATE_INDEXES_BEFORE_FOREIGN_KEYS, CROSSJOIN_ASINNER11_SYNTAX, DATETIME_STORES_MILLISECS, DEFAULT_BEFORE_NULL_IN_COLUMN_OPTIONS, DEFAULT_KEYWORD_IN_COLUMN_OPTIONS, DEFAULT_KEYWORD_WITH_NOT_NULL_IN_COLUMN_OPTIONS, DEFERRED_CONSTRAINTS, DISTINCT_WITH_SELECT_FOR_UPDATE, EXISTS_SYNTAX, FK_DELETE_ACTION_CASCADE, FK_DELETE_ACTION_DEFAULT, FK_DELETE_ACTION_NULL, FK_DELETE_ACTION_RESTRICT, FK_IN_END_CREATE_STATEMENTS, FK_UPDATE_ACTION_CASCADE, FK_UPDATE_ACTION_DEFAULT, FK_UPDATE_ACTION_NULL, FK_UPDATE_ACTION_RESTRICT, GET_GENERATED_KEYS_STATEMENT, INCLUDE_ORDERBY_COLS_IN_SELECT, LOCK_OPTION_PLACED_AFTER_FROM, LOCK_OPTION_PLACED_WITHIN_JOIN, LOCK_WITH_SELECT_FOR_UPDATE, NULL_EQUALS_EMPTY_STRING, NULLS_IN_CANDIDATE_KEYS, NULLS_KEYWORD_IN_COLUMN_OPTIONS, ORDERBY_USING_SELECT_COLUMN_INDEX, PERSIST_OF_UNASSIGNED_CHAR, PRIMARYKEY_IN_CREATE_STATEMENTS, STATEMENT_BATCHING, STORED_PROCEDURES, TX_ISOLATION_NONE, TX_ISOLATION_READ_COMMITTED, TX_ISOLATION_READ_UNCOMMITTED, TX_ISOLATION_REPEATABLE_READ, TX_ISOLATION_SERIALIZABLE, UNION_SYNTAX, UNIQUE_IN_END_CREATE_STATEMENTS, UPDATE_MULTITABLE, USE_UNION_ALL, VIEWS
 
Fields inherited from interface org.datanucleus.store.mapped.DatastoreAdapter
ANALYSIS_METHODS, BIT_IS_REALLY_BOOLEAN, BOOLEAN_COMPARISON, CATALOGS_IN_TABLE_DEFINITIONS, ESCAPE_EXPRESSION_IN_LIKE_PREDICATE, IDENTIFIERS_LOWERCASE, IDENTIFIERS_LOWERCASE_QUOTED, IDENTIFIERS_MIXEDCASE, IDENTIFIERS_MIXEDCASE_QUOTED, IDENTIFIERS_MIXEDCASE_QUOTED_SENSITIVE, IDENTIFIERS_MIXEDCASE_SENSITIVE, IDENTIFIERS_UPPERCASE, IDENTIFIERS_UPPERCASE_QUOTED, IDENTITY_COLUMNS, PROJECTION_IN_TABLE_REFERENCE_JOINS, SCHEMAS_IN_TABLE_DEFINITIONS, SEQUENCES
 
Constructor Summary
protected DatabaseAdapter(DatabaseMetaData metadata)
          Constructs a database adapter based on the given JDBC metadata.
 
Method Summary
protected  void 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.
 long getAdapterTime(Timestamp time)
           
 String getAddCandidateKeyStatement(CandidateKey ck, org.datanucleus.store.mapped.IdentifierFactory factory)
          Returns the appropriate SQL to add a candidate key to its table.
 String getAddColumnStatement(org.datanucleus.store.mapped.DatastoreContainerObject table, Column col)
          Accessor for the SQL statement to add a column to a table.
 String getAddForeignKeyStatement(ForeignKey fk, org.datanucleus.store.mapped.IdentifierFactory factory)
          Returns the appropriate SQL to add a foreign key to its table.
 String getAddPrimaryKeyStatement(PrimaryKey pk, org.datanucleus.store.mapped.IdentifierFactory factory)
          Returns the appropriate SQL to add a primary key to its table.
 String getAutoIncrementKeyword()
          Accessor for the autoincrementing keyword for generating DDLs.
 String getAutoIncrementStmt(Table table, String columnName)
          Accessor for the autoincrementing sql statement for this datastore.
 String getCatalogName(Connection conn)
          Accessor for the Catalog Name for this datastore.
 String getCatalogSeparator()
          Accessor for the catalog separator.
 String getCheckConstraintForValues(org.datanucleus.store.mapped.DatastoreIdentifier identifier, Object[] values, boolean nullable)
          Creates a CHECK constraint definition based on the given values e.g.
 ResultSet getColumns(Connection conn, String catalog, String schema, String table, String columnNamePattern)
          Accessor for table and column information for a catalog/schema in this datastore.
 String getContinuationString()
          Continuation string to use where the SQL statement goes over more than 1 line.
 String getCreateIndexStatement(Index idx, org.datanucleus.store.mapped.IdentifierFactory factory)
          Returns the appropriate DDL to create an index.
 String getCreateTableStatement(TableImpl table, Column[] columns, Properties props, org.datanucleus.store.mapped.IdentifierFactory factory)
          Returns the appropriate SQL to create the given table having the given columns.
 String getDatastoreDateStatement()
          Accessor for a statement that will return the statement to use to get the datastore date.
 String getDatastoreDriverName()
           
 String getDatastoreDriverVersion()
           
 int getDatastoreIdentifierMaxLength(org.datanucleus.store.mapped.IdentifierType identifierType)
          Method to return the maximum length of a datastore identifier of the specified type.
 String getDatastoreProductName()
           
 String getDatastoreProductVersion()
           
 String getDeleteTableStatement(SQLTable tbl)
          Method to return the basic SQL for a DELETE TABLE statement.
 int getDriverMajorVersion()
          Accessor for the JDBC driver major version
 int getDriverMinorVersion()
          Accessor for the JDBC driver minor version
 String getDropTableStatement(org.datanucleus.store.mapped.DatastoreContainerObject table)
          Returns the appropriate SQL to drop the given table.
 String getDropViewStatement(ViewImpl view)
          Returns the appropriate SQL to drop the given view.
 String getEscapeCharacter()
          The character for escaping characters in pattern expressions.
 String getEscapePatternExpression()
          The character for escaping characters in pattern expressions.
 ResultSet getExistingIndexes(Connection conn, String catalog, String schema, String table)
          Provide the existing indexes in the database for the table.
 String getIdentifierQuoteString()
          Accessor for an identifier quote string.
 String getInsertStatementForNoColumns(Table table)
          Method to return the INSERT statement to use when inserting into a table that has no columns specified.
 org.datanucleus.store.mapped.mapping.MappingManager getMappingManager(org.datanucleus.store.mapped.MappedStoreManager storeMgr)
          Accessor for a MappingManager suitable for use with this datastore adapter.
 int getMaxForeignKeys()
          Accessor for the maximum foreign keys by table permitted for this datastore.
 int getMaxIndexes()
          Accessor for the maximum indexes by schema permitted for this datastore.
protected  int getMiliseconds(long nanos)
           
 String getNewUUIDFunction()
          The function to creates a unique value of type uniqueidentifier.
 String getNumericConversionFunction()
          Accessor for the function to use for converting to numeric.
 String getOperatorConcat()
          An operator in a string expression that concatenates two or more character or binary strings, columns, or a combination of strings and column names into one expression (a string operator).
 String getOrderString(org.datanucleus.store.StoreManager storeMgr, String orderString, SQLExpression sqlExpr)
          Convenience method to allow adaption of an ordering string before applying it.
 String getPatternExpressionAnyCharacter()
          The pattern string for representing one character that is expanded in word searches.
 String getPatternExpressionZeroMoreCharacters()
          The pattern string for representing zero or more characters that is expanded in word searches.
 String getRangeByLimitEndOfStatementClause(long offset, long count)
          Method to return the SQL to append to the end of the SELECT statement to handle restriction of ranges using the LIMIT keyword.
 String getRangeByRowNumberColumn()
          Method to return the column name to use when handling ranges via a rownumber on the select using the original method (DB2).
 String getRangeByRowNumberColumn2()
          Method to return the column name to use when handling ranges via a rownumber on the select using the second method (Oracle).
 int getRequiredTransactionIsolationLevel()
          Accessor for the "required" transaction isolation level if it has to be a certain value for this adapter.
 String getSchemaName(Connection conn)
          Accessor for the Schema Name for this datastore.
 String getSelectForUpdateText()
          Method returning the text to append to the end of the SELECT to perform the equivalent of "SELECT ...
 String getSelectNewUUIDStmt()
          The function to creates a unique value of type uniqueidentifier.
 String getSelectWithLockOption()
          The option to specify in "SELECT ...
 String getSequenceCreateStmt(String sequence_name, Integer min, Integer max, Integer start, Integer increment, Integer cache_size)
          Accessor for the sequence create statement for this datastore.
 String getSequenceNextStmt(String sequence_name)
          Accessor for the sequence statement to get the next id for this datastore.
protected  Collection<SQLTypeInfo> 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.
 Collection<String> getSupportedOptions()
          Accessor for the options that are supported by this datastore adapter and the underlying datastore.
 String getSurrogateForEmptyStrings()
          Some databases, Oracle, treats an empty string (0 length) equals null
protected  long getTime(long time, long nanos)
           
 int getTransactionIsolationForSchemaCreation()
          Accessor for the transaction isolation level to use during schema creation.
 int getUnlimitedLengthPrecisionValue(SQLTypeInfo typeInfo)
          Returns the precision value to be used when creating string columns of "unlimited" length.
 Object getValueForProperty(String name)
          Accessor for a property.
 String getVendorID()
           
 void initialiseDatastore(Object conn)
          Creates the auxiliary functions/procedures in the schema
 void initialiseTypes(org.datanucleus.store.schema.StoreSchemaHandler handler, org.datanucleus.store.connection.ManagedConnection mconn)
          Initialise the types for this datastore.
 boolean isIdentityFieldDataType(String typeName)
          Verifies if the given typeName is auto incremented by the datastore.
 boolean isKeyword(String word)
          Tests if a given string is a SQL key word.
 boolean isReservedKeyword(String word)
          Tests if a given string is a SQL keyword.
 boolean isStatementCancel(SQLException sqle)
          return whether this exception represents a cancelled statement.
 boolean isStatementTimeout(SQLException sqle)
          return whether this exception represents a timed out statement.
 boolean isValidPrimaryKeyType(int datatype)
          Method to return whether the specified JDBC type is valid for use in a PrimaryKey.
 Iterator iteratorReservedWords()
          Iterator for the reserved words constructed from the method DataBaseMetaData.getSQLKeywords + standard SQL reserved words
 ForeignKeyInfo newFKInfo(ResultSet rs)
          Method to return ForeignKeyInfo for the current row of the ResultSet which will have been obtained from a call to DatabaseMetaData.getImportedKeys() or DatabaseMetaData.getExportedKeys().
 RDBMSColumnInfo newRDBMSColumnInfo(ResultSet rs)
          Create a new column info from the current row of the passed ResultSet.
 SQLTypeInfo newSQLTypeInfo(ResultSet rs)
          Create a new SQL type info from the current row of the passed ResultSet.
protected  Set parseKeywordList(String list)
          Utility method to parse a list of keywords and split them out into words.
 void removeUnsupportedMappings(org.datanucleus.store.schema.StoreSchemaHandler handler, org.datanucleus.store.connection.ManagedConnection mconn)
          Remove all mappings from the mapping manager that don't have a datastore type initialised.
 void setProperties(Map<String,Object> props)
          Set any properties controlling how the adapter is configured.
 boolean supportsOption(String option)
          Accessor for whether the supplied option is supported.
 boolean supportsQueryFetchSize(int size)
          Whether the datastore will support setting the query fetch size to the supplied value.
 boolean supportsTransactionIsolation(int level)
          Accessor for whether this database adapter supports the specified transaction isolation.
 String toString()
           
 boolean validToSelectMappingInStatement(SQLStatement stmt, org.datanucleus.store.mapped.mapping.JavaTypeMapping m)
          Method to return if it is valid to select the specified mapping for the specified statement for this datastore adapter.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

LOCALISER_BASE

protected static final org.datanucleus.util.Localiser LOCALISER_BASE

LOCALISER

protected static final org.datanucleus.util.Localiser LOCALISER

reservedKeywords

protected final HashSet<String> reservedKeywords
The set of reserved keywords for this datastore.


datastoreProductName

protected String datastoreProductName
The product name of the underlying datastore.


datastoreProductVersion

protected String datastoreProductVersion
The version number of the underlying datastore as a string.


datastoreMajorVersion

protected int datastoreMajorVersion
The major version number of the underlying datastore.


datastoreMinorVersion

protected int datastoreMinorVersion
The minor version number of the underlying datastore.


datastoreRevisionVersion

protected int datastoreRevisionVersion
The revision version number of the underlying datastore.


identifierQuoteString

protected String identifierQuoteString
The String used to quote identifiers.


supportedOptions

protected Collection<String> supportedOptions
Supported option names.


driverName

protected String driverName
the JDBC driver name


driverVersion

protected String driverVersion
the JDBC driver version


driverMajorVersion

protected int driverMajorVersion
The major version number of the underlying driver.


driverMinorVersion

protected int driverMinorVersion
The minor version number of the underlying driver.


maxTableNameLength

protected int maxTableNameLength
The maximum length to be used for a table name.


maxConstraintNameLength

protected int maxConstraintNameLength
The maximum length to be used for a table constraint name.


maxIndexNameLength

protected int maxIndexNameLength
The maximum length to be used for an index name.


maxColumnNameLength

protected int maxColumnNameLength
The maximum length to be used for a column name.


catalogSeparator

protected String catalogSeparator
The String used to separate catalog and table name.


properties

protected Map<String,Object> properties
Optional properties controlling the configuration.

Constructor Detail

DatabaseAdapter

protected DatabaseAdapter(DatabaseMetaData metadata)
Constructs a database adapter based on the given JDBC metadata.

Parameters:
metadata - the database metadata.
Method Detail

initialiseDatastore

public void initialiseDatastore(Object conn)
Creates the auxiliary functions/procedures in the schema

Specified by:
initialiseDatastore in interface org.datanucleus.store.mapped.DatastoreAdapter
Parameters:
conn - the connection to the datastore

initialiseTypes

public void initialiseTypes(org.datanucleus.store.schema.StoreSchemaHandler handler,
                            org.datanucleus.store.connection.ManagedConnection mconn)
Initialise the types for this datastore.

Specified by:
initialiseTypes in interface org.datanucleus.store.mapped.DatastoreAdapter
Parameters:
handler - SchemaHandler that we initialise the types for
mconn - Managed connection to use

setProperties

public void setProperties(Map<String,Object> props)
Set any properties controlling how the adapter is configured.

Specified by:
setProperties in interface org.datanucleus.store.mapped.DatastoreAdapter
Parameters:
props - The properties

getValueForProperty

public Object getValueForProperty(String name)
Accessor for a property. Null imples not defined

Parameters:
name - Name of the property
Returns:
Its value

removeUnsupportedMappings

public void removeUnsupportedMappings(org.datanucleus.store.schema.StoreSchemaHandler handler,
                                      org.datanucleus.store.connection.ManagedConnection mconn)
Remove all mappings from the mapping manager that don't have a datastore type initialised.

Specified by:
removeUnsupportedMappings in interface org.datanucleus.store.mapped.DatastoreAdapter
Parameters:
handler - Schema handler
mconn - Managed connection to use

getSQLTypeInfoForJdbcType

protected Collection<SQLTypeInfo> 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.

Parameters:
handler - Schema handler
mconn - Connection
jdbcTypeNumber - JDBC type
Returns:
The SQL type info

addSQLTypeForJDBCType

protected void 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.

Parameters:
handler - the schema handler managing the types
mconn - Connection to use
jdbcTypeNumber - The JDBC type
sqlType - The type info to use
addIfNotPresent - whether to add only if JDBC type not present

supportsTransactionIsolation

public boolean supportsTransactionIsolation(int level)
Accessor for whether this database adapter supports the specified transaction isolation.

Specified by:
supportsTransactionIsolation in interface RDBMSAdapter
Parameters:
level - The isolation level (as defined by Connection enums).
Returns:
Whether it is supported.

getSupportedOptions

public Collection<String> getSupportedOptions()
Accessor for the options that are supported by this datastore adapter and the underlying datastore.

Specified by:
getSupportedOptions in interface org.datanucleus.store.mapped.DatastoreAdapter
Returns:
The options (Collection)

supportsOption

public boolean supportsOption(String option)
Accessor for whether the supplied option is supported.

Specified by:
supportsOption in interface org.datanucleus.store.mapped.DatastoreAdapter
Parameters:
option - The option
Returns:
Whether supported.

getMappingManager

public org.datanucleus.store.mapped.mapping.MappingManager getMappingManager(org.datanucleus.store.mapped.MappedStoreManager storeMgr)
Accessor for a MappingManager suitable for use with this datastore adapter.

Specified by:
getMappingManager in interface org.datanucleus.store.mapped.DatastoreAdapter
Parameters:
storeMgr - The StoreManager
Returns:
the MappingManager

getAdapterTime

public long getAdapterTime(Timestamp time)
Specified by:
getAdapterTime in interface org.datanucleus.store.mapped.DatastoreAdapter

getTime

protected long getTime(long time,
                       long nanos)

getMiliseconds

protected int getMiliseconds(long nanos)

getDatastoreProductName

public String getDatastoreProductName()
Specified by:
getDatastoreProductName in interface org.datanucleus.store.mapped.DatastoreAdapter

getDatastoreProductVersion

public String getDatastoreProductVersion()
Specified by:
getDatastoreProductVersion in interface org.datanucleus.store.mapped.DatastoreAdapter

getDatastoreDriverName

public String getDatastoreDriverName()
Specified by:
getDatastoreDriverName in interface org.datanucleus.store.mapped.DatastoreAdapter

getDatastoreDriverVersion

public String getDatastoreDriverVersion()
Specified by:
getDatastoreDriverVersion in interface org.datanucleus.store.mapped.DatastoreAdapter

supportsQueryFetchSize

public boolean supportsQueryFetchSize(int size)
Whether the datastore will support setting the query fetch size to the supplied value.

Specified by:
supportsQueryFetchSize in interface org.datanucleus.store.mapped.DatastoreAdapter
Parameters:
size - The value to set to
Returns:
Whether it is supported.

getVendorID

public String getVendorID()
Specified by:
getVendorID in interface org.datanucleus.store.mapped.DatastoreAdapter

isReservedKeyword

public boolean isReservedKeyword(String word)
Tests if a given string is a SQL keyword.

The list of key words tested against is defined to contain all SQL/92 keywords, plus any additional key words reported by the JDBC driver for this adapter via DatabaseMetaData.getSQLKeywords().

In general, use of a SQL key word as an identifier should be avoided. SQL/92 key words are divided into reserved and non-reserved words. If a reserved word is used as an identifier it must be quoted with double quotes. Strictly speaking, the same is not true of non-reserved words. However, as C.J. Date writes in A Guide To The SQL Standard :

The rule by which it is determined within the standard that one key word needs to be reserved while another need not is not clear to this writer. In practice, it is probably wise to treat all key words as reserved.

Specified by:
isReservedKeyword in interface org.datanucleus.store.mapped.DatastoreAdapter
Parameters:
word - The word to test.
Returns:
true if word is a SQL key word for this DBMS. The comparison is case-insensitive.
See Also:
SQLConstants

getIdentifierQuoteString

public String getIdentifierQuoteString()
Accessor for an identifier quote string.

Specified by:
getIdentifierQuoteString in interface org.datanucleus.store.mapped.DatastoreAdapter
Returns:
Identifier quote string.

getDriverMajorVersion

public int getDriverMajorVersion()
Accessor for the JDBC driver major version

Returns:
The driver major version

getDriverMinorVersion

public int getDriverMinorVersion()
Accessor for the JDBC driver minor version

Returns:
The driver minor version

getDatastoreIdentifierMaxLength

public int getDatastoreIdentifierMaxLength(org.datanucleus.store.mapped.IdentifierType identifierType)
Method to return the maximum length of a datastore identifier of the specified type. If no limit exists then returns -1

Specified by:
getDatastoreIdentifierMaxLength in interface org.datanucleus.store.mapped.DatastoreAdapter
Parameters:
identifierType - Type of identifier (see IdentifierFactory.TABLE, etc)
Returns:
The max permitted length of this type of identifier

getMaxForeignKeys

public int getMaxForeignKeys()
Accessor for the maximum foreign keys by table permitted for this datastore.

Specified by:
getMaxForeignKeys in interface org.datanucleus.store.mapped.DatastoreAdapter
Returns:
Max number of FKs for a table

getMaxIndexes

public int getMaxIndexes()
Accessor for the maximum indexes by schema permitted for this datastore.

Specified by:
getMaxIndexes in interface org.datanucleus.store.mapped.DatastoreAdapter
Returns:
Max number of indexes for a table

iteratorReservedWords

public Iterator iteratorReservedWords()
Iterator for the reserved words constructed from the method DataBaseMetaData.getSQLKeywords + standard SQL reserved words

Specified by:
iteratorReservedWords in interface RDBMSAdapter
Returns:
an Iterator with a set of reserved words

newRDBMSColumnInfo

public RDBMSColumnInfo newRDBMSColumnInfo(ResultSet rs)
Description copied from interface: RDBMSAdapter
Create a new column info from the current row of the passed ResultSet. Allows an adapter to override particular column information where the JDBC driver is known to be buggy.

Specified by:
newRDBMSColumnInfo in interface RDBMSAdapter
Parameters:
rs - Result Set
Returns:
The column info

newSQLTypeInfo

public SQLTypeInfo newSQLTypeInfo(ResultSet rs)
Description copied from interface: RDBMSAdapter
Create a new SQL type info from the current row of the passed ResultSet. Allows an adapter to override particular types where the JDBC driver is known to be buggy.

Specified by:
newSQLTypeInfo in interface RDBMSAdapter
Parameters:
rs - ResultSet
Returns:
The SQL type info

newFKInfo

public ForeignKeyInfo newFKInfo(ResultSet rs)
Method to return ForeignKeyInfo for the current row of the ResultSet which will have been obtained from a call to DatabaseMetaData.getImportedKeys() or DatabaseMetaData.getExportedKeys().

Specified by:
newFKInfo in interface RDBMSAdapter
Parameters:
rs - The result set returned from DatabaseMetaData.get??portedKeys()
Returns:
The foreign key info

parseKeywordList

protected Set parseKeywordList(String list)
Utility method to parse a list of keywords and split them out into words.

Parameters:
list - The comma-separated list of keywords.
Returns:
Set of keywords.

isKeyword

public boolean isKeyword(String word)
Tests if a given string is a SQL key word.

The list of key words tested against is defined to contain all SQL/92 key words, plus any additional key words reported by the JDBC driver for this adapter via DatabaseMetaData.getSQLKeywords().

In general, use of a SQL key word as an identifier should be avoided. SQL/92 key words are divided into reserved and non-reserved words. If a reserved word is used as an identifier it must be quoted with double quotes. Strictly speaking, the same is not true of non-reserved words. However, as C.J. Date writes in A Guide To The SQL Standard :

The rule by which it is determined within the standard that one key word needs to be reserved while another need not is not clear to this writer. In practice, it is probably wise to treat all key words as reserved.

Parameters:
word - The word to test.
Returns:
true if word is a SQL key word for this DBMS. The comparison is case-insensitive.
See Also:
SQLConstants

getUnlimitedLengthPrecisionValue

public int getUnlimitedLengthPrecisionValue(SQLTypeInfo typeInfo)
Returns the precision value to be used when creating string columns of "unlimited" length. Usually, if this value is needed it is provided in. However, for some types in some databases the value must be computed.

Specified by:
getUnlimitedLengthPrecisionValue in interface RDBMSAdapter
Parameters:
typeInfo - the typeInfo object for which the precision value is needed.
Returns:
the precision value to be used when creating the column, or -1 if no value should be used.

isValidPrimaryKeyType

public boolean isValidPrimaryKeyType(int datatype)
Method to return whether the specified JDBC type is valid for use in a PrimaryKey.

Specified by:
isValidPrimaryKeyType in interface RDBMSAdapter
Parameters:
datatype - The JDBC type.
Returns:
Whether it is valid for use in the PK

getSurrogateForEmptyStrings

public String getSurrogateForEmptyStrings()
Some databases, Oracle, treats an empty string (0 length) equals null

Specified by:
getSurrogateForEmptyStrings in interface RDBMSAdapter
Returns:
returns a surrogate to replace the empty string in the database otherwise it would be treated as null

getTransactionIsolationForSchemaCreation

public int getTransactionIsolationForSchemaCreation()
Accessor for the transaction isolation level to use during schema creation.

Specified by:
getTransactionIsolationForSchemaCreation in interface RDBMSAdapter
Returns:
The transaction isolation level for schema generation process

getRequiredTransactionIsolationLevel

public int getRequiredTransactionIsolationLevel()
Accessor for the "required" transaction isolation level if it has to be a certain value for this adapter.

Specified by:
getRequiredTransactionIsolationLevel in interface RDBMSAdapter
Returns:
Transaction isolation level (-1 implies no restriction)

getCatalogName

public String getCatalogName(Connection conn)
                      throws SQLException
Accessor for the Catalog Name for this datastore.

Specified by:
getCatalogName in interface RDBMSAdapter
Parameters:
conn - Connection to the datastore
Returns:
The catalog name
Throws:
SQLException - Thrown if error occurs in determining the catalog name.

getSchemaName

public String getSchemaName(Connection conn)
                     throws SQLException
Accessor for the Schema Name for this datastore.

Specified by:
getSchemaName in interface RDBMSAdapter
Parameters:
conn - Connection to the datastore
Returns:
The schema name
Throws:
SQLException - Thrown if error occurs in determining the schema name.

getCatalogSeparator

public String getCatalogSeparator()
Accessor for the catalog separator.

Specified by:
getCatalogSeparator in interface org.datanucleus.store.mapped.DatastoreAdapter
Returns:
Catalog separator string.

getSelectWithLockOption

public String getSelectWithLockOption()
The option to specify in "SELECT ... FROM TABLE ... WITH (option)" to lock instances Null if not supported.

Specified by:
getSelectWithLockOption in interface RDBMSAdapter
Returns:
The option to specify with "SELECT ... FROM TABLE ... WITH (option)"

getSelectForUpdateText

public String getSelectForUpdateText()
Method returning the text to append to the end of the SELECT to perform the equivalent of "SELECT ... FOR UPDATE" (on some RDBMS). This method means that we can have different text with some datastores (e.g Derby).

Returns:
The "FOR UPDATE" text

getSelectNewUUIDStmt

public String getSelectNewUUIDStmt()
The function to creates a unique value of type uniqueidentifier.

Specified by:
getSelectNewUUIDStmt in interface RDBMSAdapter
Returns:
The function. e.g. "SELECT NEWID()"

getNewUUIDFunction

public String getNewUUIDFunction()
The function to creates a unique value of type uniqueidentifier.

Returns:
The function. e.g. "NEWID()"

getOrderString

public String getOrderString(org.datanucleus.store.StoreManager storeMgr,
                             String orderString,
                             SQLExpression sqlExpr)
Convenience method to allow adaption of an ordering string before applying it. This is useful where the datastore accepts some conversion adapter around the ordering column for example.

Specified by:
getOrderString in interface RDBMSAdapter
Parameters:
storeMgr - StoreManager
orderString - The basic ordering string
sqlExpr - The sql expression being represented here
Returns:
The adapted ordering string

validToSelectMappingInStatement

public boolean validToSelectMappingInStatement(SQLStatement stmt,
                                               org.datanucleus.store.mapped.mapping.JavaTypeMapping m)
Method to return if it is valid to select the specified mapping for the specified statement for this datastore adapter. Sometimes, dependent on the type of the column(s), and what other components are present in the statement, it may be invalid to select the mapping. This implementation returns true, so override in database-specific subclass as required.

Specified by:
validToSelectMappingInStatement in interface RDBMSAdapter
Parameters:
stmt - The statement
m - The mapping that we want to select
Returns:
Whether it is valid

getAutoIncrementStmt

public String getAutoIncrementStmt(Table table,
                                   String columnName)
Accessor for the autoincrementing sql statement for this datastore.

Specified by:
getAutoIncrementStmt in interface RDBMSAdapter
Parameters:
table - Name of the table that the autoincrement is for
columnName - Name of the column that the autoincrement is for
Returns:
The statement for getting the latest autoincremented key

getAutoIncrementKeyword

public String getAutoIncrementKeyword()
Accessor for the autoincrementing keyword for generating DDLs. (CREATE TABLEs...).

Specified by:
getAutoIncrementKeyword in interface RDBMSAdapter
Returns:
The keyword for a column using autoincrement

isIdentityFieldDataType

public boolean isIdentityFieldDataType(String typeName)
Verifies if the given typeName is auto incremented by the datastore.

Specified by:
isIdentityFieldDataType in interface org.datanucleus.store.mapped.DatastoreAdapter
Parameters:
typeName - the datastore type name
Returns:
true when the typeName has values auto incremented by the datastore

getInsertStatementForNoColumns

public String getInsertStatementForNoColumns(Table table)
Method to return the INSERT statement to use when inserting into a table that has no columns specified. This is the case when we have a single column in the table and that column is autoincrement/identity (and so is assigned automatically in the datastore).

Specified by:
getInsertStatementForNoColumns in interface RDBMSAdapter
Parameters:
table - The table
Returns:
The statement for the INSERT

getSequenceCreateStmt

public String getSequenceCreateStmt(String sequence_name,
                                    Integer min,
                                    Integer max,
                                    Integer start,
                                    Integer increment,
                                    Integer cache_size)
Accessor for the sequence create statement for this datastore.

Specified by:
getSequenceCreateStmt in interface RDBMSAdapter
Parameters:
sequence_name - Name of the sequence
min - Minimum value for the sequence
max - Maximum value for the sequence
start - Start value for the sequence
increment - Increment value for the sequence
cache_size - Cache size for the sequence
Returns:
The statement for getting the next id from the sequence

getSequenceNextStmt

public String getSequenceNextStmt(String sequence_name)
Accessor for the sequence statement to get the next id for this datastore.

Specified by:
getSequenceNextStmt in interface RDBMSAdapter
Parameters:
sequence_name - Name of the sequence
Returns:
The statement for getting the next id for the sequence

getExistingIndexes

public ResultSet getExistingIndexes(Connection conn,
                                    String catalog,
                                    String schema,
                                    String table)
                             throws SQLException
Provide the existing indexes in the database for the table. This is implemented if and only if the datastore has its own way of getting indexes. Otherwise we will use DatabaseMetaData.getIndexInfo(). The implementation here returns null.

Specified by:
getExistingIndexes in interface RDBMSAdapter
Parameters:
conn - the JDBC connection
catalog - the catalog name
schema - the schema name
table - the table name
Returns:
a ResultSet with the format @see DatabaseMetaData#getIndexInfo(java.lang.String, java.lang.String, java.lang.String, boolean, boolean)
Throws:
SQLException

getCreateTableStatement

public String getCreateTableStatement(TableImpl table,
                                      Column[] columns,
                                      Properties props,
                                      org.datanucleus.store.mapped.IdentifierFactory factory)
Returns the appropriate SQL to create the given table having the given columns. No column constraints or key definitions should be included. It should return something like:

 CREATE TABLE FOO ( BAR VARCHAR(30), BAZ INTEGER )
 

Specified by:
getCreateTableStatement in interface RDBMSAdapter
Parameters:
table - The table to create.
columns - The columns of the table.
props - Properties for controlling the table creation
factory - Factory for identifiers
Returns:
The text of the SQL statement.

getAddPrimaryKeyStatement

public String getAddPrimaryKeyStatement(PrimaryKey pk,
                                        org.datanucleus.store.mapped.IdentifierFactory factory)
Returns the appropriate SQL to add a primary key to its table. It should return something like:

 ALTER TABLE FOO ADD CONSTRAINT FOO_PK PRIMARY KEY (BAR)
 ALTER TABLE FOO ADD PRIMARY KEY (BAR)
 

Specified by:
getAddPrimaryKeyStatement in interface RDBMSAdapter
Parameters:
pk - An object describing the primary key.
factory - Identifier factory
Returns:
The text of the SQL statement.

getAddCandidateKeyStatement

public String getAddCandidateKeyStatement(CandidateKey ck,
                                          org.datanucleus.store.mapped.IdentifierFactory factory)
Returns the appropriate SQL to add a candidate key to its table. It should return something like:

 ALTER TABLE FOO ADD CONSTRAINT FOO_CK UNIQUE (BAZ)
 ALTER TABLE FOO ADD UNIQUE (BAZ)
 

Specified by:
getAddCandidateKeyStatement in interface RDBMSAdapter
Parameters:
ck - An object describing the candidate key.
factory - Identifier factory
Returns:
The text of the SQL statement.

getAddForeignKeyStatement

public String getAddForeignKeyStatement(ForeignKey fk,
                                        org.datanucleus.store.mapped.IdentifierFactory factory)
Returns the appropriate SQL to add a foreign key to its table. It should return something like:

 ALTER TABLE FOO ADD CONSTRAINT FOO_FK1 FOREIGN KEY (BAR, BAZ) REFERENCES ABC (COL1, COL2)
 ALTER TABLE FOO ADD FOREIGN KEY (BAR, BAZ) REFERENCES ABC (COL1, COL2)
 

Specified by:
getAddForeignKeyStatement in interface RDBMSAdapter
Parameters:
fk - An object describing the foreign key.
factory - Identifier factory
Returns:
The text of the SQL statement.

getAddColumnStatement

public String getAddColumnStatement(org.datanucleus.store.mapped.DatastoreContainerObject table,
                                    Column col)
Accessor for the SQL statement to add a column to a table.

Specified by:
getAddColumnStatement in interface RDBMSAdapter
Parameters:
table - The table
col - The column
Returns:
The SQL necessary to add the column

getCreateIndexStatement

public String getCreateIndexStatement(Index idx,
                                      org.datanucleus.store.mapped.IdentifierFactory factory)
Returns the appropriate DDL to create an index. It should return something like:
 CREATE INDEX FOO_N1 ON FOO (BAR,BAZ) [Extended Settings]
 CREATE UNIQUE INDEX FOO_U1 ON FOO (BAR,BAZ) [Extended Settings]
 

Specified by:
getCreateIndexStatement in interface RDBMSAdapter
Parameters:
idx - An object describing the index.
factory - Identifier factory
Returns:
The text of the SQL statement.

getCheckConstraintForValues

public String getCheckConstraintForValues(org.datanucleus.store.mapped.DatastoreIdentifier identifier,
                                          Object[] values,
                                          boolean nullable)
Creates a CHECK constraint definition based on the given values e.g.
CHECK ("COLUMN" IN ('VAL1','VAL2') OR "COLUMN" IS NULL)

Specified by:
getCheckConstraintForValues in interface RDBMSAdapter
Parameters:
identifier - Column identifier
values - Valid values
nullable - whether the datastore identifier is null
Returns:
The check constraint

getDropTableStatement

public String getDropTableStatement(org.datanucleus.store.mapped.DatastoreContainerObject table)
Returns the appropriate SQL to drop the given table. It should return something like:

 DROP TABLE FOO CASCADE
 

Specified by:
getDropTableStatement in interface RDBMSAdapter
Parameters:
table - The table to drop.
Returns:
The text of the SQL statement.

getDropViewStatement

public String getDropViewStatement(ViewImpl view)
Returns the appropriate SQL to drop the given view. It should return something like:

 DROP VIEW FOO
 

Specified by:
getDropViewStatement in interface RDBMSAdapter
Parameters:
view - The view to drop.
Returns:
The text of the SQL statement.

getDeleteTableStatement

public String getDeleteTableStatement(SQLTable tbl)
Method to return the basic SQL for a DELETE TABLE statement. Returns the String as DELETE FROM tbl t1. Doesn't include any where clause.

Specified by:
getDeleteTableStatement in interface RDBMSAdapter
Parameters:
tbl - The SQLTable to delete
Returns:
The delete table string

getRangeByLimitEndOfStatementClause

public String getRangeByLimitEndOfStatementClause(long offset,
                                                  long count)
Method to return the SQL to append to the end of the SELECT statement to handle restriction of ranges using the LIMIT keyword. Defaults to an empty string (not supported). SELECT param ... WHERE {LIMIT}

Specified by:
getRangeByLimitEndOfStatementClause in interface RDBMSAdapter
Parameters:
offset - The offset to return from
count - The number of items to return
Returns:
The SQL to append to allow for ranges using LIMIT.

getRangeByRowNumberColumn

public String getRangeByRowNumberColumn()
Method to return the column name to use when handling ranges via a rownumber on the select using the original method (DB2). Defaults to an empty string (not supported).

Specified by:
getRangeByRowNumberColumn in interface RDBMSAdapter
Returns:
The row number column.

getRangeByRowNumberColumn2

public String getRangeByRowNumberColumn2()
Method to return the column name to use when handling ranges via a rownumber on the select using the second method (Oracle). Defaults to an empty string (not supported).

Specified by:
getRangeByRowNumberColumn2 in interface RDBMSAdapter
Returns:
The row number column.

getColumns

public ResultSet getColumns(Connection conn,
                            String catalog,
                            String schema,
                            String table,
                            String columnNamePattern)
                     throws SQLException
Accessor for table and column information for a catalog/schema in this datastore.

Specified by:
getColumns in interface RDBMSAdapter
Parameters:
conn - Connection to use
catalog - The catalog (null if none)
schema - The schema (null if none)
table - The table (null if all)
columnNamePattern - The column name (null if all)
Returns:
ResultSet containing the table/column information
Throws:
SQLException - Thrown if an error occurs

toString

public String toString()
Specified by:
toString in interface org.datanucleus.store.mapped.DatastoreAdapter
Overrides:
toString in class Object

getDatastoreDateStatement

public String getDatastoreDateStatement()
Accessor for a statement that will return the statement to use to get the datastore date.

Specified by:
getDatastoreDateStatement in interface RDBMSAdapter
Returns:
SQL statement to get the datastore date

getPatternExpressionAnyCharacter

public String getPatternExpressionAnyCharacter()
The pattern string for representing one character that is expanded in word searches. Most of databases will use the underscore character.

Returns:
the pattern string.

getPatternExpressionZeroMoreCharacters

public String getPatternExpressionZeroMoreCharacters()
The pattern string for representing zero or more characters that is expanded in word searches. Most of databases will use the percent sign character.

Returns:
the pattern string.

getEscapePatternExpression

public String getEscapePatternExpression()
The character for escaping characters in pattern expressions.

Returns:
the character.

getEscapeCharacter

public String getEscapeCharacter()
The character for escaping characters in pattern expressions.

Returns:
the character.

getContinuationString

public String getContinuationString()
Continuation string to use where the SQL statement goes over more than 1 line. Some JDBC adapters (e.g DB2) don't do conversion.

Returns:
Continuation string.

getNumericConversionFunction

public String getNumericConversionFunction()
Accessor for the function to use for converting to numeric.

Returns:
The numeric conversion function for this datastore.

getOperatorConcat

public String getOperatorConcat()
An operator in a string expression that concatenates two or more character or binary strings, columns, or a combination of strings and column names into one expression (a string operator).

Returns:
the operator SQL String

isStatementCancel

public boolean isStatementCancel(SQLException sqle)
return whether this exception represents a cancelled statement.

Specified by:
isStatementCancel in interface RDBMSAdapter
Parameters:
sqle - the exception
Returns:
whether it is a cancel

isStatementTimeout

public boolean isStatementTimeout(SQLException sqle)
return whether this exception represents a timed out statement.

Specified by:
isStatementTimeout in interface RDBMSAdapter
Parameters:
sqle - the exception
Returns:
whether it is a timeout


Copyright © 2012. All Rights Reserved.