Class OracleDatabaseProvider
- All Implemented Interfaces:
Disposable
- Author:
- Daniel Spiewak
-
Nested Class Summary
Nested classes/interfaces inherited from class net.java.ao.DatabaseProvider
DatabaseProvider.RenderFieldOptions, DatabaseProvider.SqlListener
-
Field Summary
FieldsFields inherited from class net.java.ao.DatabaseProvider
logger, quoteRef, sqlLogger, typeManager
-
Constructor Summary
ConstructorsConstructorDescriptionOracleDatabaseProvider
(DisposableDataSource dataSource) OracleDatabaseProvider
(DisposableDataSource dataSource, String schema) -
Method Summary
Modifier and TypeMethodDescriptionprotected <T extends RawEntity<K>,
K>
KexecuteInsertReturningKey
(EntityManager manager, Connection conn, Class<T> entityType, Class<K> pkType, String pkField, String sql, DBParam... params) Delegate method to execute an INSERT statement returning any auto-generated primary key values.getImportedKeys
(Connection connection, String tableName) getIndexes
(Connection conn, String tableName) protected int
Returns the maximum length for any identifier in the underlying database.Retrieves the set of all reserved words for the underlying database.getSequences
(Connection conn) Statement can't be closed locally as this would also close the result set.getTables
(Connection conn) Returns a result set of all of the tables (and associated meta) in the database.void
handleUpdateError
(String sql, SQLException e) Tells whether this exception should be ignored when running an updated statement.parseValue
(int type, String value) Parses the database-agnosticString
value relevant to the specified SQL type inint
form (as defined byTypes
and returns the Java value which corresponds.void
putBoolean
(PreparedStatement stmt, int index, boolean value) Stors an SQLBOOLEAN
value in the database.void
putNull
(PreparedStatement stmt, int index) Stores an SQLNULL
value in the database.renderAccessoriesForField
(NameConverters nameConverters, DDLTable table, DDLField field) Generates database-specific DDL statements required to create any functions, sequences, or triggers required for the given field.protected SQLAction
renderAlterTableAddColumnStatement
(NameConverters nameConverters, DDLTable table, DDLField field) Generates the database-specific DDL statement for adding a column, but not including any corresponding sequences, triggers, etc.renderAlterTableChangeColumn
(NameConverters nameConverters, DDLTable table, DDLField oldField, DDLField field) Generates the database-specific DDL statements required to change the given column from its old specification to the given DDL value.protected SQLAction
Generates the database-specific DDL statement required to remove a foreign key from a table.protected String
Generates the DDL fragment required to specify an INTEGER field as auto-incremented.renderDropAccessoriesForField
(NameConverters nameConverters, DDLTable table, DDLField field) Generates database-specific DDL statements required to drop any functions, sequences, or triggers associated with the given field.protected SQLAction
renderDropIndex
(IndexNameConverter indexNameConverter, DDLIndex index) Generates the database-specific DDL statement required to drop an index.protected SQLAction
renderDropTableStatement
(DDLTable table) Generates the appropriate database-specific DDL statement to drop the specified table representation.renderMetadataQuery
(String tableName) Render "SELECT * FROMLIMIT 1" in the database specific dialect protected String
renderQueryLimit
(Query query) Renders the LIMIT portion of the query in the database-specific SQL dialect.protected String
renderQuerySelect
(Query query, TableNameConverter converter, boolean count) Renders the SELECT portion of a givenQuery
instance in the manner required by the database-specific SQL implementation.protected String
renderUnique
(UniqueNameConverter uniqueNameConverter, DDLTable table, DDLField field) Renders theUNIQUE
constraint as defined by the database-specific DDL syntax.protected String
renderValue
(Object value) Renders the given Java instance in a database-specific way.protected boolean
shouldQuoteID
(String id) Determines whether or not the specified identifier should be quoted before transmission to the underlying database.Methods inherited from class net.java.ao.DatabaseProvider
_getFunctionNameForField, _getTriggerNameForField, _renderDropFunctionForField, _renderDropSequenceForField, _renderDropTriggerForField, _renderFunctionForField, _renderSequenceForField, _renderTriggerForField, addSqlListener, commitTransaction, convertTypeToString, dispose, executeUpdate, executeUpdateForAction, executeUpdatesForActions, findForeignKeysForField, getConnection, getDateFormat, getTypeManager, handleBlob, hasIndex, hasIndex, insertBatch, insertReturningKey, isCaseSensitive, isNumericType, isSchemaNotEmpty, loadQuoteString, onSql, preparedStatement, preparedStatement, preparedStatement, processID, processID, processOnClause, processOrderClause, processTableName, processWhereClause, querySelectFields, queryTableName, quote, quoteTableName, removeSqlListener, renderAccessories, renderAction, renderAlterTableAddColumn, renderAlterTableAddKey, renderAlterTableChangeColumnStatement, renderAlterTableDropColumn, renderAlterTableDropColumnStatement, renderAppend, renderConstraints, renderConstraintsForTable, renderCreateCompositeIndex, renderCreateIndex, renderDate, renderDropAccessories, renderDropColumnActions, renderField, renderFieldDefault, renderFieldOptionsInAlterColumn, renderFields, renderFieldType, renderForeignKey, renderInsert, renderPrimaryKey, renderQuery, renderQueryGroupBy, renderQueryHaving, renderQueryJoins, renderQueryOrderBy, renderQueryWhere, renderTable, rollbackTransaction, setPostConnectionProperties, setQueryResultSetProperties, setQueryStatementProperties, shorten, shouldQuoteTableName, startTransaction, withSchema
-
Field Details
-
RESERVED_WORDS
-
-
Constructor Details
-
OracleDatabaseProvider
-
OracleDatabaseProvider
-
-
Method Details
-
renderMetadataQuery
Description copied from class:DatabaseProvider
Render "SELECT * FROMLIMIT 1" in the database specific dialect - Overrides:
renderMetadataQuery
in classDatabaseProvider
-
getSchema
- Overrides:
getSchema
in classDatabaseProvider
-
getTables
Description copied from class:DatabaseProvider
Returns a result set of all of the tables (and associated meta) in the database. The fields of the result set must correspond with those specified in the
DatabaseMetaData#getTables(String, String, String, String[])
method. In fact, the default implementation merely calls this method passing(null, null, "", null)
. For databases (such as PostgreSQL) where this is unsuitable, different parameters can be specified to thegetTables
method in the override, or an entirely new implementation written, as long as the result set corresponds in fields to the JDBC spec.- Overrides:
getTables
in classDatabaseProvider
- Parameters:
conn
- The connection to use in retrieving the database tables.- Returns:
- A result set of tables (and meta) corresponding in fields to the JDBC specification.
- Throws:
SQLException
- See Also:
-
getSequences
Statement can't be closed locally as this would also close the result set. Suppressing SonarQube warning S2095 as the result set and statement are closed in a local calling method. Alternative approach would be to redesign the API to return beans instead of live ResultSet (AO-3611).- Overrides:
getSequences
in classDatabaseProvider
- Throws:
SQLException
-
getIndexes
- Overrides:
getIndexes
in classDatabaseProvider
- Throws:
SQLException
-
getImportedKeys
- Overrides:
getImportedKeys
in classDatabaseProvider
- Throws:
SQLException
-
renderQuerySelect
Description copied from class:DatabaseProvider
Renders the SELECT portion of a given
Query
instance in the manner required by the database-specific SQL implementation. Usually, this is as simple as"SELECT id FROM table"
or"SELECT DISTINCT * FROM table"
. However, some databases require the limit and offset parameters to be specified as part of the SELECT clause. For example, on HSQLDB, a Query for the "id" field limited to 10 rows would render SELECT like this:SELECT TOP 10 id FROM table
.There is usually no need to call this method directly. Under normal operations it functions as a delegate for
DatabaseProvider.renderQuery(Query, TableNameConverter, boolean)
.- Overrides:
renderQuerySelect
in classDatabaseProvider
- Parameters:
query
- The Query instance from which to determine the SELECT properties.converter
- The name converter to allow conversion of the query entity interface into a proper table name.count
- Whether or not the query should be rendered as aSELECT COUNT(*)
.- Returns:
- The database-specific SQL rendering of the SELECT portion of the query.
-
renderQueryLimit
Description copied from class:DatabaseProvider
Renders the LIMIT portion of the query in the database-specific SQL dialect. There is wide variety in database implementations of this particular SQL clause. In fact, many database do not support it at all.
Unfortunately, we live in the real world of proprietary database implementations that requires us to use database specific keywords or semantics to achieve these outcomes. Appropriate methods should be overridden in such cases.
An example return value:
" LIMIT 10,2"
There is usually no need to call this method directly. Under normal operations it functions as a delegate for
DatabaseProvider.renderQuery(Query, TableNameConverter, boolean)
.- Overrides:
renderQueryLimit
in classDatabaseProvider
- Parameters:
query
- The Query instance from which to determine the LIMIT properties.- Returns:
- The database-specific SQL rendering of the LIMIT portion of the query.
-
renderAutoIncrement
Description copied from class:DatabaseProvider
Generates the DDL fragment required to specify an INTEGER field as auto-incremented. For databases which do not support such flags (which is just about every database exception MySQL),
""
is an acceptable return value. This method should never returnnull
as it would cause the field rendering method to throw aNullPointerException
.- Overrides:
renderAutoIncrement
in classDatabaseProvider
-
parseValue
Description copied from class:DatabaseProvider
Parses the database-agnostic
String
value relevant to the specified SQL type inint
form (as defined byTypes
and returns the Java value which corresponds. This method is completely database-agnostic, as are all of all of its delegate methods.WARNING: This method is being considered for removal to another class (perhaps
TypeManager
?) as it is not a database-specific function and thus confuses the purpose of this class. Do not rely upon it heavily. (better yet, don't rely on it at all from external code. It's not designed to be part of the public API)- Overrides:
parseValue
in classDatabaseProvider
- Parameters:
type
- The JDBC integer type of the database field against which to parse the value.value
- The database-agnostic String value to parse into a proper Java object with respect to the specified SQL type.- Returns:
- A Java value which corresponds to the specified String.
-
renderUnique
protected String renderUnique(UniqueNameConverter uniqueNameConverter, DDLTable table, DDLField field) Description copied from class:DatabaseProvider
Renders theUNIQUE
constraint as defined by the database-specific DDL syntax. This method is a delegate of other, more complex methods such asDatabaseProvider.renderField(net.java.ao.schema.NameConverters, net.java.ao.schema.ddl.DDLTable, net.java.ao.schema.ddl.DDLField, net.java.ao.DatabaseProvider.RenderFieldOptions)
. The default implementation just returnsUNIQUE
. Implementations may override this method to return an emptyString
if the database in question does not support the constraint.- Overrides:
renderUnique
in classDatabaseProvider
- Returns:
- The database-specific rendering of
UNIQUE
.
-
renderValue
Description copied from class:DatabaseProvider
Renders the given Java instance in a database-specific way. This method handles special cases such asCalendar
,Boolean
(which is always rendered as 0/1), functions,null
and numbers. All other values are rendered (by default) as'value.toString()'
(the String value enclosed within single quotes). Implementations are encouraged to override this method as necessary.- Overrides:
renderValue
in classDatabaseProvider
- Parameters:
value
- The Java instance to be rendered as a database literal.- Returns:
- The database-specific String rendering of the instance in question.
- See Also:
-
renderAlterTableAddColumnStatement
protected SQLAction renderAlterTableAddColumnStatement(NameConverters nameConverters, DDLTable table, DDLField field) Description copied from class:DatabaseProvider
Generates the database-specific DDL statement for adding a column, but not including any corresponding sequences, triggers, etc.- Overrides:
renderAlterTableAddColumnStatement
in classDatabaseProvider
table
- The table which should receive the new column.field
- The column to add to the specified table.- Returns:
- A DDL statements to execute.
-
renderAlterTableChangeColumn
protected Iterable<SQLAction> renderAlterTableChangeColumn(NameConverters nameConverters, DDLTable table, DDLField oldField, DDLField field) Description copied from class:DatabaseProvider
Generates the database-specific DDL statements required to change the given column from its old specification to the given DDL value. This method will also generate the appropriate statements to remove old triggers and functions, as well as add new ones according to the requirements of the new field definition.
The default implementation of this method functions in the manner specified by the MySQL database. Some databases will have to perform more complicated actions (such as dropping and re-adding the field) in order to satesfy the same use-case. Such databases should print a warning to stderr to ensure that the end-developer is aware of such restrictions.
Thus, the specification for this method allows for data loss. Nevertheless, if the database supplies a mechanism to accomplish the task without data loss, it should be applied.
For maximum flexibility, the default implementation of this method only deals with the dropping and addition of functions and triggers. The actual generation of the ALTER TABLE statement is done in the
DatabaseProvider.renderAlterTableChangeColumnStatement(net.java.ao.schema.NameConverters, net.java.ao.schema.ddl.DDLTable, net.java.ao.schema.ddl.DDLField, net.java.ao.schema.ddl.DDLField, net.java.ao.DatabaseProvider.RenderFieldOptions)
method.- Overrides:
renderAlterTableChangeColumn
in classDatabaseProvider
table
- The table containing the column to change.oldField
- The old column definition.field
- The new column definition (defining the resultant DDL). @return An array of DDL statements to be executed.- See Also:
-
#getTriggerNameForField(net.java.ao.schema.TriggerNameConverter, net.java.ao.schema.ddl.DDLTable, net.java.ao.schema.ddl.DDLField)
#getFunctionNameForField(net.java.ao.schema.TriggerNameConverter, net.java.ao.schema.ddl.DDLTable, net.java.ao.schema.ddl.DDLField)
#renderFunctionForField(net.java.ao.schema.TriggerNameConverter, net.java.ao.schema.ddl.DDLTable, net.java.ao.schema.ddl.DDLField)
#renderTriggerForField(net.java.ao.schema.TriggerNameConverter, net.java.ao.schema.SequenceNameConverter, net.java.ao.schema.ddl.DDLTable, net.java.ao.schema.ddl.DDLField)
-
renderAlterTableDropKey
Description copied from class:DatabaseProvider
Generates the database-specific DDL statement required to remove a foreign key from a table. For databases which do not support such a statement, a warning should be printed to stderr and anull
value returned. This method assumes that theDatabaseProvider.renderForeignKey(DDLForeignKey)
method properly names the foreign key according to theDDLForeignKey.getFKName()
method.- Overrides:
renderAlterTableDropKey
in classDatabaseProvider
- Parameters:
key
- The foreign key to be removed. As this instance contains all necessary data (such as domestic table, field, etc), no additional parameters are required.- Returns:
- A DDL statement to be executed, or
null
.
-
renderDropIndex
Description copied from class:DatabaseProvider
Generates the database-specific DDL statement required to drop an index. The syntax for this operation is highly standardized and thus it is unlikely this method will be overridden. If the database in question does not support indexes, a warning should be printed to stderr andnull
returned.- Overrides:
renderDropIndex
in classDatabaseProvider
index
- The index to drop. This single instance contains all of the data necessary to drop the index, thus no separate parameters (such as aDDLTable
) are required.- Returns:
- A DDL statement to be executed, or
null
.
-
renderDropTableStatement
Description copied from class:DatabaseProvider
Generates the appropriate database-specific DDL statement to drop the specified table representation. The default implementation is merely"DROP TABLE tablename"
. This is suitable for every database that I am aware of. Any dependent database objects (such as triggers, functions, etc) must be rendered in one of the other delegate methods (such asrenderDropTriggers(DDLTable)
).- Overrides:
renderDropTableStatement
in classDatabaseProvider
- Parameters:
table
- The table representation which is to be dropped.- Returns:
- A database-specific DDL statement which drops the specified table.
-
handleUpdateError
Description copied from class:DatabaseProvider
Tells whether this exception should be ignored when running an updated statement. Typically, errors on dropping non-existing objects should be ignored.- Overrides:
handleUpdateError
in classDatabaseProvider
e
- theSQLException
that occured.- Throws:
SQLException
- throws the SQLException if it should not be ignored.
-
executeInsertReturningKey
protected <T extends RawEntity<K>,K> K executeInsertReturningKey(EntityManager manager, Connection conn, Class<T> entityType, Class<K> pkType, String pkField, String sql, DBParam... params) throws SQLException Description copied from class:DatabaseProvider
Delegate method to execute an INSERT statement returning any auto-generated primary key values. This method is primarily designed to be called as a delegate from the
#insertReturningKey(EntityManager, Connection, Class, String, boolean, String, DBParam...)
method. The idea behind this method is to allow custom implementations to override this method to potentially execute other statements (such as getting the next value in a sequence) rather than the default implementaiton which uses the JDBC constant,RETURN_GENERATED_KEYS
. Any database which has a fully-implemented JDBC driver should have no problems with the default implementation of this method.Part of the design behind splitting
insertReturningKey
andexecuteInsertReturningKey
is so that logic for generating the actual INSERT statement need not be duplicated throughout the code and in custom implementations providing trivial changes to the default algorithm. This method should avoid actually generating SQL if at all possible.This method should iterate through the passed
DBParam(s)
to ensure that no primary key value was explicitly specified. If one was, it should be used in leiu of one which is auto-generated by the database. Also, it is this value which should be returned if specified, rather than the value which would have been generated ornull
. As such, this method should always return exactly the value of the primary key field in the row which was just inserted, regardless of what that value may be.In cases where the database mechanism for getting the next primary key value is not thread safe, this method should be declared
synchronized
, or some thread synchronization technique employed. Unfortunately, it is not always possible to ensure that no other INSERT could (potentially) "steal" the expected value out from under the algorithm. Such scenarios are to be avoided when possible, but the algorithm need not take extremely escoteric concurrency cases into account. (see the HSQLDB provider for an example of such a less-than-thorough asynchronous algorithm)IMPORTANT: The INSERT
Statement
must use the specified connection, rather than a new one retrieved fromDatabaseProvider.getConnection()
or equivalent. This is because the INSERT may be part of a bulk insertion, a transaction, or possibly another such operation. It is also important to note that this method should not close the connection. Doing so could cause the entity creation algorithm to fail at a higher level up the stack.- Overrides:
executeInsertReturningKey
in classDatabaseProvider
- Parameters:
manager
- TheEntityManager
which was used to dispatch the INSERT in question.conn
- The database connection to use in executing the INSERT statement.entityType
- The Java class of the entity.pkType
- The Java class type of the primary key field (for use both in searching theparams
as well as performing value conversion of auto-generated DB values into proper Java instances).pkField
- The database field which is the primary key for the table in question. Can be used to perform a linear search for a specified primary key value in theparams
list.params
- A varargs array of parameters to be passed to the INSERT statement. This may include a specified value for the primary key. @throws SQLException If the INSERT fails in the delegate method, or if any additional statements fail with an exception.- Throws:
SQLException
- See Also:
-
#insertReturningKey(EntityManager, Connection, Class, String, boolean, String, DBParam...)
-
renderAccessoriesForField
protected Iterable<SQLAction> renderAccessoriesForField(NameConverters nameConverters, DDLTable table, DDLField field) Description copied from class:DatabaseProvider
Generates database-specific DDL statements required to create any functions, sequences, or triggers required for the given field. Each returnedSQLAction
should have a correspondingundo action
that deletes the corresponding function, sequence, or trigger. The default implementation returns an empty list.- Overrides:
renderAccessoriesForField
in classDatabaseProvider
- Returns:
- an ordered list of
SQLAction
s
-
renderDropAccessoriesForField
protected Iterable<SQLAction> renderDropAccessoriesForField(NameConverters nameConverters, DDLTable table, DDLField field) Description copied from class:DatabaseProvider
Generates database-specific DDL statements required to drop any functions, sequences, or triggers associated with the given field. The default implementation returns an empty list.- Overrides:
renderDropAccessoriesForField
in classDatabaseProvider
- Returns:
- an ordered list of
SQLAction
s
-
shouldQuoteID
Description copied from class:DatabaseProvider
Determines whether or not the specified identifier should be quoted before transmission to the underlying database. The default implementation transforms the identifier into all-upper-case and checks the result againstDatabaseProvider.getReservedWords()
. Databases with more complicated rules regarding quoting should provide a custom implementation of this method.- Overrides:
shouldQuoteID
in classDatabaseProvider
- Parameters:
id
- The identifier to check against the quoting rules.- Returns:
true
if the specified identifier is invalid under the relevant quoting rules, otherwisefalse
.
-
getMaxIDLength
protected int getMaxIDLength()Description copied from class:DatabaseProvider
Returns the maximum length for any identifier in the underlying database. If the database defines different maximum lengths for different identifier types, the minimum value should be returned by this method. By default, this just returnsInteger.MAX_VALUE
.- Overrides:
getMaxIDLength
in classDatabaseProvider
- Returns:
- The maximum identifier length for the database.
-
getReservedWords
Description copied from class:DatabaseProvider
Retrieves the set of all reserved words for the underlying database. The set returns should be speculative, meaning that it should include any possible reserved words, not just those for a particular version. As an implementation guideline, theSet
instance returned from this method should guarentee O(1) lookup times, otherwise ORM performance will suffer greatly.- Specified by:
getReservedWords
in classDatabaseProvider
- Returns:
- A set of upper case reserved words specific to the database.
-
putNull
Description copied from class:DatabaseProvider
Stores an SQLNULL
value in the database. This method is required due to the fact that not all JDBC drivers handle NULLs in the same fashion. The default implementation callsPreparedStatement.setNull(int, int)
, retrieving parameter type from metadata. Databases which require a different implementation (e.g. PostgreSQL) should override this method.- Overrides:
putNull
in classDatabaseProvider
- Parameters:
stmt
- The statement in which to store theNULL
value.index
- The index of the parameter which should be assignedNULL
.- Throws:
SQLException
-
putBoolean
Description copied from class:DatabaseProvider
Stors an SQLBOOLEAN
value in the database. Most databases handle differences inBOOLEAN
semantics within their JDBC driver(s). However, some do not implement thePreparedStatement.setBoolean(int, boolean)
method correctly. To work around this defect, any database providers for such databases should override this method to store boolean values in the relevant fashion.- Overrides:
putBoolean
in classDatabaseProvider
- Parameters:
stmt
- The statement in which to store theBOOLEAN
value.index
- The index of the parameter which should be assigned.value
- The value to be stored in the relevant field.- Throws:
SQLException
-