|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectnet.java.ao.DatabaseProvider
net.java.ao.db.MySQLDatabaseProvider
public final class MySQLDatabaseProvider
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, sqlLogger, typeManager |
Constructor Summary | |
---|---|
MySQLDatabaseProvider(DisposableDataSource dataSource)
|
Method Summary | |
---|---|
protected boolean |
considerPrecision(DDLField field)
Determines whether or not the database allows explicit precisions for the field in question. |
protected String |
convertTypeToString(DatabaseType<?> type)
Converts the specified type into the database-specific DDL String value. |
protected Set<String> |
getReservedWords()
Retrieves the set of all reserved words for the underlying database. |
boolean |
isCaseSensetive()
Flag indicating whether or not the underlying database uses case-sensetive identifiers. |
protected List<String> |
renderAlterTableAddColumn(NameConverters nameConverters,
DDLTable table,
DDLField field)
Generates the database-specific DDL statements required to add a column to an existing table. |
protected List<String> |
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 String |
renderAppend()
Generates any database-specific options which must be appended to the end of a table definition. |
protected String |
renderAutoIncrement()
Generates the DDL fragment required to specify an INTEGER field as auto-incremented. |
protected String |
renderConstraintsForTable(UniqueNameConverter uniqueNameConverter,
DDLTable table)
Renders the foreign key constraints in database-specific DDL for the table in question. |
protected String |
renderCreateIndex(IndexNameConverter indexNameConverter,
DDLIndex index)
Generates the database-specific DDL statement required to create a new index. |
protected String |
renderFieldType(DDLField field)
Renders the database-specific DDL type for the field in question. |
protected String |
renderUnique(UniqueNameConverter uniqueNameConverter,
DDLTable table,
DDLField field)
Renders the UNIQUE constraint as defined by the
database-specific DDL syntax. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public MySQLDatabaseProvider(DisposableDataSource dataSource)
Method Detail |
---|
protected boolean considerPrecision(DDLField field)
DatabaseProvider
Determines whether or not the database allows explicit precisions
for the field in question. This is to support databases such as
Derby which do not support precisions for certain types. By
default, this method returns true
.
More often than not, all that is required for this determination is the type. As such, the method signature may change in a future release.
considerPrecision
in class DatabaseProvider
field
- The field for which precision should/shouldn't be rendered.
true
if precision should be rendered, otherwise
false
.protected String convertTypeToString(DatabaseType<?> type)
DatabaseProvider
DatabaseType#getDefaultName()
method. Subclass implementations should be sure to make a super
call in order to ensure that both default naming and future special
cases are handled appropriately.
convertTypeToString
in class DatabaseProvider
type
- The type instance to convert to a DDL string.
DatabaseType.getDefaultName()
protected 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 String renderAppend()
DatabaseProvider
Generates any database-specific options which must be appended to the end of a table definition. The only database I am aware of which requires this is MySQL. For example:
CREATE TABLE test ( id INTEGER NOT NULL AUTO_INCREMENT, name VARCHAR(45), PRIMARY KEY(id) ) ENGINE=InnoDB;
The "ENGINE=InnoDB
" clause is what is returned by
this method. The default implementation simply returns
null
, signifying that no append should be rendered.
renderAppend
in class DatabaseProvider
null
protected String renderUnique(UniqueNameConverter uniqueNameConverter, DDLTable table, DDLField field)
DatabaseProvider
UNIQUE
constraint as defined by the
database-specific DDL syntax. This method is a delegate of other, more
complex methods such as DatabaseProvider.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 returns UNIQUE
. Implementations may
override this method to return an empty String
if the database
in question does not support the constraint.
renderUnique
in class DatabaseProvider
UNIQUE
.protected 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 List<String> renderAlterTableAddColumn(NameConverters nameConverters, DDLTable table, DDLField field)
DatabaseProvider
@OnUpdate
annotation, chances are there will be a trigger and possibly a
function along with the ALTER statement. These "extra"
functions are properly ordered and will only be appended if
their values are not null
. Because of this, very
few database providers will need to override this method.
renderAlterTableAddColumn
in class DatabaseProvider
table
- The table which should receive the new column.field
- The column to add to the specified table. @return An array of DDL statements to execute.DatabaseProvider.renderFunctionForField(net.java.ao.schema.TriggerNameConverter, net.java.ao.schema.ddl.DDLTable, net.java.ao.schema.ddl.DDLField)
,
DatabaseProvider.renderTriggerForField(net.java.ao.schema.TriggerNameConverter, net.java.ao.schema.SequenceNameConverter, net.java.ao.schema.ddl.DDLTable, net.java.ao.schema.ddl.DDLField)
protected List<String> 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.DatabaseProvider.getTriggerNameForField(net.java.ao.schema.TriggerNameConverter, net.java.ao.schema.ddl.DDLTable, net.java.ao.schema.ddl.DDLField)
,
DatabaseProvider.getFunctionNameForField(net.java.ao.schema.TriggerNameConverter, net.java.ao.schema.ddl.DDLTable, net.java.ao.schema.ddl.DDLField)
,
DatabaseProvider.renderFunctionForField(net.java.ao.schema.TriggerNameConverter, net.java.ao.schema.ddl.DDLTable, net.java.ao.schema.ddl.DDLField)
,
DatabaseProvider.renderTriggerForField(net.java.ao.schema.TriggerNameConverter, net.java.ao.schema.SequenceNameConverter, net.java.ao.schema.ddl.DDLTable, net.java.ao.schema.ddl.DDLField)
protected String renderFieldType(DDLField field)
DatabaseProvider
DatabaseProvider.convertTypeToString(DatabaseType)
method, passing the field type. Thus, it is rarely necessary
(if ever) to override this method. It may be deprecated in a
future release.
renderFieldType
in class DatabaseProvider
field
- The field which contains the type to be rendered.
protected String 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.
null
.protected Set<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 boolean isCaseSensetive()
DatabaseProvider
SchemaReader
utility. The default value is true
. Note that databases which
support both case-sensetive and case-insensetive identifiers (like MySQL) should
return true
for better all-around compatibility.
isCaseSensetive
in class DatabaseProvider
true
if identifiers are case-sensetive,
false
otherwise.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |