public class NuoDBDatabaseProvider extends DatabaseProvider
DatabaseProvider.RenderFieldOptions, DatabaseProvider.SqlListener
Modifier and Type | Field and Description |
---|---|
static java.util.Set<java.lang.String> |
RESERVED_WORDS |
logger, quoteRef, sqlLogger, typeManager
Constructor and Description |
---|
NuoDBDatabaseProvider(DisposableDataSource dataSource) |
NuoDBDatabaseProvider(DisposableDataSource dataSource,
java.lang.String schema) |
Modifier and Type | Method and Description |
---|---|
protected java.util.Set<java.lang.String> |
getReservedWords()
Retrieves the set of all reserved words for the underlying database.
|
java.sql.ResultSet |
getTables(java.sql.Connection conn)
Workaround for DB-7451 transaction isolation level SERIALIZABLE will not show tables created or altered with
auto-commit off.
|
protected void |
loadQuoteString() |
java.lang.Object |
parseValue(int type,
java.lang.String value)
Parses the database-agnostic
String value relevant to the specified SQL
type in int form (as defined by Types and returns
the Java value which corresponds. |
void |
putNull(java.sql.PreparedStatement stmt,
int index)
The sql type argument is mandatory in JDBC for some reason, but is ignored by NuoDB JDBC,
so any integer value can be used.
|
protected java.lang.Iterable<SQLAction> |
renderAccessoriesForField(NameConverters nameConverters,
DDLTable table,
DDLField field)
Create indices on field being altered.
|
protected java.lang.Iterable<SQLAction> |
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 |
renderAlterTableDropKey(DDLForeignKey key)
Generates the database-specific DDL statement required to remove a
foreign key from a table.
|
protected java.lang.String |
renderAutoIncrement()
Generates the DDL fragment required to specify an INTEGER field as
auto-incremented.
|
protected java.lang.String |
renderConstraintsForTable(UniqueNameConverter uniqueNameConverter,
DDLTable table)
Renders the foreign key constraints in database-specific DDL for
the table in question.
|
protected SQLAction |
renderCreateIndex(IndexNameConverter indexNameConverter,
DDLIndex index)
Generates the database-specific DDL statement required to create
a new index.
|
protected java.lang.Iterable<SQLAction> |
renderDropAccessoriesForField(NameConverters nameConverters,
DDLTable table,
DDLField field)
Drop indices on field being altered.
|
protected SQLAction |
renderDropIndex(IndexNameConverter indexNameConverter,
DDLIndex index)
Generates the database-specific DDL statement required to drop
an index.
|
protected DatabaseProvider.RenderFieldOptions |
renderFieldOptionsInAlterColumn() |
protected java.lang.String |
renderForeignKey(DDLForeignKey key)
Foreign keys which reference primary table aren't supported because of a open issue and are rendered in
commentary
block.
|
_getFunctionNameForField, _getTriggerNameForField, _renderDropFunctionForField, _renderDropSequenceForField, _renderDropTriggerForField, _renderFunctionForField, _renderSequenceForField, _renderTriggerForField, addSqlListener, commitTransaction, convertTypeToString, dispose, executeInsertReturningKey, executeUpdate, executeUpdateForAction, executeUpdatesForActions, findForeignKeysForField, getConnection, getDateFormat, getImportedKeys, getIndexes, getMaxIDLength, getSchema, getSequences, getTypeManager, handleBlob, handleUpdateError, hasIndex, hasIndex, insertReturningKey, isCaseSensitive, isNumericType, isSchemaNotEmpty, onSql, preparedStatement, preparedStatement, preparedStatement, processID, processOnClause, processOrderClause, processTableName, processWhereClause, putBoolean, querySelectFields, queryTableName, quote, quoteTableName, removeSqlListener, renderAccessories, renderAction, renderAlterTableAddColumn, renderAlterTableAddColumnStatement, renderAlterTableAddKey, renderAlterTableChangeColumnStatement, renderAlterTableDropColumn, renderAlterTableDropColumnStatement, renderAppend, renderCreateCompositeIndex, renderDate, renderDropAccessories, renderDropColumnActions, renderDropTableStatement, renderField, renderFieldDefault, renderFields, renderFieldType, renderInsert, renderMetadataQuery, renderPrimaryKey, renderQuery, renderQueryGroupBy, renderQueryHaving, renderQueryJoins, renderQueryLimit, renderQueryOrderBy, renderQuerySelect, renderQueryWhere, renderTable, renderUnique, renderValue, rollbackTransaction, setPostConnectionProperties, setQueryResultSetProperties, setQueryStatementProperties, shorten, shouldQuoteID, shouldQuoteTableName, startTransaction, withSchema
public NuoDBDatabaseProvider(DisposableDataSource dataSource)
public NuoDBDatabaseProvider(DisposableDataSource dataSource, java.lang.String schema)
public java.sql.ResultSet getTables(java.sql.Connection conn) throws java.sql.SQLException
getTables
in class DatabaseProvider
conn
- The connection to use in retrieving the database tables.java.sql.SQLException
DatabaseMetaData.getTables(String, String, String, String[])
protected java.lang.String renderAutoIncrement()
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 return null
as it would cause the field rendering method to throw a NullPointerException
.
renderAutoIncrement
in class DatabaseProvider
protected DatabaseProvider.RenderFieldOptions renderFieldOptionsInAlterColumn()
renderFieldOptionsInAlterColumn
in class DatabaseProvider
protected java.lang.Iterable<SQLAction> renderAlterTableChangeColumn(NameConverters nameConverters, DDLTable table, DDLField oldField, DDLField field)
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.
renderAlterTableChangeColumn
in class DatabaseProvider
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.#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)
protected java.lang.Iterable<SQLAction> renderDropAccessoriesForField(NameConverters nameConverters, DDLTable table, DDLField field)
renderDropAccessoriesForField
in class DatabaseProvider
SQLAction
sprotected java.lang.Iterable<SQLAction> renderAccessoriesForField(NameConverters nameConverters, DDLTable table, DDLField field)
renderAccessoriesForField
in class DatabaseProvider
SQLAction
sprotected SQLAction renderCreateIndex(IndexNameConverter indexNameConverter, DDLIndex index)
DatabaseProvider
null
returned.renderCreateIndex
in class DatabaseProvider
index
- The index to create. This single instance contains all
of the data necessary to create the index, thus no separate
parameters (such as a DDLTable
) are required.protected SQLAction renderDropIndex(IndexNameConverter indexNameConverter, DDLIndex index)
DatabaseProvider
null
returned.renderDropIndex
in class DatabaseProvider
index
- The index to drop. This single instance contains all
of the data necessary to drop the index, thus no separate
parameters (such as a DDLTable
) are required.null
.protected java.lang.String renderConstraintsForTable(UniqueNameConverter uniqueNameConverter, DDLTable table)
DatabaseProvider
renderConstraintsForTable
in class DatabaseProvider
table
- The database-agnostic DDL representation of the table
in question.DatabaseProvider.renderForeignKey(DDLForeignKey)
protected java.lang.String renderForeignKey(DDLForeignKey key)
renderForeignKey
in class DatabaseProvider
key
- The database-agnostic foreign key representation.protected SQLAction renderAlterTableDropKey(DDLForeignKey key)
DatabaseProvider
null
value returned. This method assumes that the
DatabaseProvider.renderForeignKey(DDLForeignKey)
method properly names
the foreign key according to the DDLForeignKey.getFKName()
method.renderAlterTableDropKey
in class DatabaseProvider
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.null
.protected void loadQuoteString()
loadQuoteString
in class DatabaseProvider
public java.lang.Object parseValue(int type, java.lang.String value)
DatabaseProvider
Parses the database-agnostic String
value relevant to the specified SQL
type in int
form (as defined by Types
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)
parseValue
in class DatabaseProvider
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.protected java.util.Set<java.lang.String> getReservedWords()
DatabaseProvider
Set
instance returned from this
method should guarentee O(1) lookup times, otherwise ORM performance
will suffer greatly.getReservedWords
in class DatabaseProvider
public void putNull(java.sql.PreparedStatement stmt, int index) throws java.sql.SQLException
putNull
in class DatabaseProvider
stmt
- The statement in which to store the NULL
value.index
- The index of the parameter which should be assigned NULL
.java.sql.SQLException
Copyright © 2007-2018. All Rights Reserved.