Class EmbeddedDerbyDatabaseProvider
- 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
Fields inherited from class net.java.ao.DatabaseProvider
logger, quoteRef, sqlLogger, typeManager -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoiddispose()Frees any resources held by the database provider or delegate libraries (such as connection pools).Retrieves the set of all reserved words for the underlying database.getTables(Connection conn) Returns a result set of all of the tables (and associated meta) in the database.handleBlob(ResultSet res, Class<?> type, String field) booleanFlag indicating whether or not the underlying database uses case-sensitive identifiers.parseValue(int type, String value) Parses the database-agnosticStringvalue relevant to the specified SQL type inintform (as defined byTypesand returns the Java value which corresponds.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.renderAlterTableDropColumn(NameConverters nameConverters, DDLTable table, DDLField field) Generates the database-specific DDL statements required to remove the specified column from the given table.protected StringGenerates the DDL fragment required to specify an INTEGER field as auto-incremented.protected SQLActionrenderDropIndex(IndexNameConverter indexNameConverter, DDLIndex index) Generates the database-specific DDL statement required to drop an index.renderMetadataQuery(String tableName) Render "SELECT * FROMLIMIT 1" in the database specific dialect protected StringrenderQueryLimit(Query query) Renders the LIMIT portion of the query in the database-specific SQL dialect.protected voidCalled to make any post-creation modifications to a newConnectioninstance.voidsetQueryResultSetProperties(ResultSet res, Query query) Allows the provider to set database-specific options on aResultSetinstance prior to its use by the library.voidsetQueryStatementProperties(Statement stmt, Query query) Allows the provider to set database-specific options on aStatementinstance prior to its usage in a SELECT query.Methods inherited from class net.java.ao.DatabaseProvider
_getFunctionNameForField, _getTriggerNameForField, _renderDropFunctionForField, _renderDropSequenceForField, _renderDropTriggerForField, _renderFunctionForField, _renderSequenceForField, _renderTriggerForField, addSqlListener, commitTransaction, convertTypeToString, executeInsertReturningKey, executeUpdate, executeUpdateForAction, executeUpdatesForActions, findForeignKeysForField, getConnection, getDateFormat, getImportedKeys, getIndexes, getMaxIDLength, getSchema, getSequences, getTypeManager, handleUpdateError, hasIndex, hasIndex, insertBatch, insertReturningKey, isNumericType, isSchemaNotEmpty, loadQuoteString, onSql, preparedStatement, preparedStatement, preparedStatement, processID, processID, processOnClause, processOrderClause, processTableName, processWhereClause, putBoolean, putNull, querySelectFields, queryTableName, quote, quoteTableName, removeSqlListener, renderAccessories, renderAccessoriesForField, renderAction, renderAlterTableAddColumn, renderAlterTableAddColumnStatement, renderAlterTableAddKey, renderAlterTableChangeColumnStatement, renderAlterTableDropColumnStatement, renderAlterTableDropKey, renderAppend, renderConstraints, renderConstraintsForTable, renderCreateCompositeIndex, renderCreateIndex, renderDate, renderDropAccessories, renderDropAccessoriesForField, renderDropColumnActions, renderDropTableStatement, renderField, renderFieldDefault, renderFieldOptionsInAlterColumn, renderFields, renderFieldType, renderForeignKey, renderInsert, renderPrimaryKey, renderQuery, renderQueryGroupBy, renderQueryHaving, renderQueryJoins, renderQueryOrderBy, renderQuerySelect, renderQueryWhere, renderTable, renderUnique, renderValue, rollbackTransaction, shorten, shouldQuoteID, shouldQuoteTableName, startTransaction, withSchema
-
Constructor Details
-
EmbeddedDerbyDatabaseProvider
-
-
Method Details
-
dispose
public void dispose()Description copied from class:DatabaseProviderFrees any resources held by the database provider or delegate libraries (such as connection pools). This method should be once usage of the provider is complete to ensure that all connections are committed and closed.- Specified by:
disposein interfaceDisposable- Overrides:
disposein classDatabaseProvider
-
renderMetadataQuery
Description copied from class:DatabaseProviderRender "SELECT * FROMLIMIT 1" in the database specific dialect - Overrides:
renderMetadataQueryin classDatabaseProvider
-
setQueryStatementProperties
Description copied from class:DatabaseProviderAllows the provider to set database-specific options on a
Statementinstance prior to its usage in a SELECT query. This is to allow things like emulation of the LIMIT feature on databases which don't support it within the SQL implementation.This method is only called on SELECTs.
- Overrides:
setQueryStatementPropertiesin classDatabaseProvider- Parameters:
stmt- The instance against which the properties should be set.query- The query which is being executed against the statement instance.- Throws:
SQLException
-
setQueryResultSetProperties
Description copied from class:DatabaseProviderAllows the provider to set database-specific options on aResultSetinstance prior to its use by the library. This allows for features such as row offsetting even on databases that don't support it (such as Oracle, Derby, etc).- Overrides:
setQueryResultSetPropertiesin classDatabaseProvider- Parameters:
res- TheResultSetto modify.query- The query instance which was run to produce the result set.- Throws:
SQLException
-
getTables
Description copied from class:DatabaseProviderReturns 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 thegetTablesmethod in the override, or an entirely new implementation written, as long as the result set corresponds in fields to the JDBC spec.- Overrides:
getTablesin 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:
-
parseValue
Description copied from class:DatabaseProviderParses the database-agnostic
Stringvalue relevant to the specified SQL type inintform (as defined byTypesand 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:
parseValuein 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.
-
setPostConnectionProperties
Description copied from class:DatabaseProviderCalled to make any post-creation modifications to a newConnectioninstance. This is used for databases such as Derby which require the schema to be set after the connection is created.- Overrides:
setPostConnectionPropertiesin classDatabaseProvider- Parameters:
conn- The connection to modify according to the database requirements.- Throws:
SQLException
-
renderQueryLimit
Description copied from class:DatabaseProviderRenders 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:
renderQueryLimitin 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:DatabaseProviderGenerates 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 returnnullas it would cause the field rendering method to throw aNullPointerException.- Overrides:
renderAutoIncrementin classDatabaseProvider
-
handleBlob
- Overrides:
handleBlobin classDatabaseProvider- Throws:
SQLException
-
renderAlterTableChangeColumn
protected Iterable<SQLAction> renderAlterTableChangeColumn(NameConverters nameConverters, DDLTable table, DDLField oldField, DDLField field) Description copied from class:DatabaseProviderGenerates 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:
renderAlterTableChangeColumnin classDatabaseProvidertable- 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)
-
renderAlterTableDropColumn
protected Iterable<SQLAction> renderAlterTableDropColumn(NameConverters nameConverters, DDLTable table, DDLField field) Description copied from class:DatabaseProviderGenerates the database-specific DDL statements required to remove the specified column from the given table. This should also generate the necessary statements to drop all triggers and functions associated with the column in question. If the database being implemented has a non-standard syntax for dropping functions and/or triggers, it may be required to override this method, even if the syntax to drop columns is standard.- Overrides:
renderAlterTableDropColumnin classDatabaseProvidertable- The table from which to drop the column.field- The column definition to remove from the table.- Returns:
- 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)
-
renderDropIndex
Description copied from class:DatabaseProviderGenerates 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 andnullreturned.- Overrides:
renderDropIndexin classDatabaseProviderindex- 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.
-
getReservedWords
Description copied from class:DatabaseProviderRetrieves 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, theSetinstance returned from this method should guarentee O(1) lookup times, otherwise ORM performance will suffer greatly.- Specified by:
getReservedWordsin classDatabaseProvider- Returns:
- A set of upper case reserved words specific to the database.
-
isCaseSensitive
public boolean isCaseSensitive()Description copied from class:DatabaseProviderFlag indicating whether or not the underlying database uses case-sensitive identifiers. This specifically affects comparisons in theSchemaReaderutility. The default value istrue. Note that databases which support both case-sensetive and case-insensetive identifiers (like MySQL) should returntruefor better all-around compatibility.- Overrides:
isCaseSensitivein classDatabaseProvider- Returns:
- boolean
trueif identifiers are case-sensetive,falseotherwise.
-