Methods in org.clazzes.jdbc2xml.schema with parameters of type SqlCommandQueue |
void |
Dialect.pushAddColumn(SqlCommandQueue queue,
TableInfo ti,
ColumnInfo ci)
Push the add column command to a command queue. |
void |
Dialect.pushAddForeignKey(SqlCommandQueue queue,
TableInfo ti,
ForeignKeyInfo fki)
Push the add foreign key command to a command queue. |
void |
Dialect.pushAddIndex(SqlCommandQueue queue,
TableInfo ti,
IndexInfo indexInfo)
Push the add index command to a command queue. |
void |
Dialect.pushChangeColumn(SqlCommandQueue queue,
TableInfo ti,
ColumnInfo oldColumnInfo,
ColumnInfo newColumnInfo)
Rename and change the datatype of a database column. |
void |
Dialect.pushCreateTable(SqlCommandQueue queue,
TableInfo ti)
Push the create table command to a command queue. |
void |
Dialect.pushDropColumn(SqlCommandQueue queue,
TableInfo ti,
ColumnInfo ci,
boolean force)
Push the drop column command to a command queue. |
void |
Dialect.pushDropForeignKey(SqlCommandQueue queue,
TableInfo ti,
ForeignKeyInfo fki)
Push the drop foreign key command to a command queue. |
void |
Dialect.pushDropIndex(SqlCommandQueue queue,
TableInfo ti,
IndexInfo indexInfo)
Push the drop index command to a command queue. |
void |
Dialect.pushDropTable(SqlCommandQueue queue,
TableInfo ti,
boolean force)
Push the drop table command to a command queue. |
void |
Dialect.pushModifyColumn(SqlCommandQueue queue,
TableInfo ti,
ColumnInfo oldColumnInfo,
ColumnInfo newColumnInfo)
Modify the datatype of a database column. |
Methods in org.clazzes.jdbc2xml.schema.impl with parameters of type SqlCommandQueue |
void |
MSSQLServerDialect.pushAddColumn(SqlCommandQueue queue,
TableInfo ti,
ColumnInfo ci)
|
void |
DerbyDialect.pushAddColumn(SqlCommandQueue queue,
TableInfo ti,
ColumnInfo ci)
|
void |
MySQLDialect.pushAddColumn(SqlCommandQueue queue,
TableInfo ti,
ColumnInfo ci)
|
void |
MSSQLServerDialect.pushAddForeignKey(SqlCommandQueue queue,
TableInfo ti,
ForeignKeyInfo fki)
|
void |
DerbyDialect.pushAddForeignKey(SqlCommandQueue queue,
TableInfo ti,
ForeignKeyInfo fki)
|
void |
MySQLDialect.pushAddForeignKey(SqlCommandQueue queue,
TableInfo ti,
ForeignKeyInfo fki)
|
void |
MSSQLServerDialect.pushAddIndex(SqlCommandQueue queue,
TableInfo ti,
IndexInfo indexInfo)
|
void |
DerbyDialect.pushAddIndex(SqlCommandQueue queue,
TableInfo ti,
IndexInfo indexInfo)
|
void |
MySQLDialect.pushAddIndex(SqlCommandQueue queue,
TableInfo ti,
IndexInfo indexInfo)
|
void |
MSSQLServerDialect.pushChangeColumn(SqlCommandQueue queue,
TableInfo ti,
ColumnInfo oldColumnInfo,
ColumnInfo newColumnInfo)
|
void |
DerbyDialect.pushChangeColumn(SqlCommandQueue queue,
TableInfo ti,
ColumnInfo oldColumnInfo,
ColumnInfo newColumnInfo)
|
void |
MySQLDialect.pushChangeColumn(SqlCommandQueue queue,
TableInfo ti,
ColumnInfo oldColumnInfo,
ColumnInfo newColumnInfo)
|
void |
MSSQLServerDialect.pushCreateTable(SqlCommandQueue queue,
TableInfo ti)
|
void |
DerbyDialect.pushCreateTable(SqlCommandQueue queue,
TableInfo ti)
|
void |
MySQLDialect.pushCreateTable(SqlCommandQueue queue,
TableInfo ti)
|
void |
MSSQLServerDialect.pushDropColumn(SqlCommandQueue queue,
TableInfo ti,
ColumnInfo ci,
boolean force)
|
void |
DerbyDialect.pushDropColumn(SqlCommandQueue queue,
TableInfo ti,
ColumnInfo ci,
boolean force)
|
void |
MySQLDialect.pushDropColumn(SqlCommandQueue queue,
TableInfo ti,
ColumnInfo ci,
boolean force)
|
void |
MSSQLServerDialect.pushDropForeignKey(SqlCommandQueue queue,
TableInfo ti,
ForeignKeyInfo fki)
|
void |
DerbyDialect.pushDropForeignKey(SqlCommandQueue queue,
TableInfo ti,
ForeignKeyInfo fki)
|
void |
MySQLDialect.pushDropForeignKey(SqlCommandQueue queue,
TableInfo ti,
ForeignKeyInfo fki)
|
void |
MSSQLServerDialect.pushDropIndex(SqlCommandQueue queue,
TableInfo ti,
IndexInfo indexInfo)
|
void |
DerbyDialect.pushDropIndex(SqlCommandQueue queue,
TableInfo ti,
IndexInfo indexInfo)
|
void |
MySQLDialect.pushDropIndex(SqlCommandQueue queue,
TableInfo ti,
IndexInfo indexInfo)
|
void |
MSSQLServerDialect.pushDropTable(SqlCommandQueue queue,
TableInfo ti,
boolean force)
|
void |
DerbyDialect.pushDropTable(SqlCommandQueue queue,
TableInfo ti,
boolean force)
|
void |
MySQLDialect.pushDropTable(SqlCommandQueue queue,
TableInfo ti,
boolean force)
|
void |
MSSQLServerDialect.pushModifyColumn(SqlCommandQueue queue,
TableInfo ti,
ColumnInfo oldColumnInfo,
ColumnInfo newColumnInfo)
|
void |
DerbyDialect.pushModifyColumn(SqlCommandQueue queue,
TableInfo ti,
ColumnInfo oldColumnInfo,
ColumnInfo newColumnInfo)
|
void |
MySQLDialect.pushModifyColumn(SqlCommandQueue queue,
TableInfo ti,
ColumnInfo oldColumnInfo,
ColumnInfo newColumnInfo)
|