|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Dialect | |
---|---|
org.clazzes.jdbc2xml.schema | |
org.clazzes.jdbc2xml.schema.impl | |
org.clazzes.jdbc2xml.tools |
Uses of Dialect in org.clazzes.jdbc2xml.schema |
---|
Methods in org.clazzes.jdbc2xml.schema that return Dialect | |
---|---|
Dialect |
ISchemaEngine.getDialect()
|
Dialect |
SchemaEngine.getDialect()
|
Dialect |
IDialectFactory.newDialect(DatabaseMetaData databaseMetaData)
Return Dialect instance according to the given database meta
data. |
Dialect |
IDialectFactory.newDialect(String databaseURL)
Return Dialect instance according to the given database url. |
Methods in org.clazzes.jdbc2xml.schema with parameters of type Dialect | |
---|---|
void |
ISchemaEngine.setDialect(Dialect dialect)
Normally you need not call this method, because the dialect is usually initialized by ISchemaEngine.setConnection(Connection) . |
void |
SchemaEngine.setDialect(Dialect dialect)
|
Uses of Dialect in org.clazzes.jdbc2xml.schema.impl |
---|
Classes in org.clazzes.jdbc2xml.schema.impl that implement Dialect | |
---|---|
class |
DerbyDialect
This class implements Dialect for Derby 10.x |
class |
MSSQLServerDialect
This class implements Dialect for MySQL 5.0.x |
class |
MySQLDialect
This class implements Dialect for MySQL 5.0.x |
class |
OracleDialect
This class implements Dialect for Oracle 10.0.x Oracle has a long list of key- and reserved words, which is a common reason for failures while creating tables etc. a enumeration of these can be found here: http://www.camden.rutgers.edu/HELP/Documentation/Oracle/server.815/a42525/apb.htm Warning: The status of this implementation is beta. |
class |
PostgreSQLDialect
This class implements Dialect for PostgreSQL 8.3 |
Methods in org.clazzes.jdbc2xml.schema.impl that return Dialect | |
---|---|
Dialect |
DialectFactoryImpl.newDialect(DatabaseMetaData databaseMetaData)
|
Dialect |
DialectFactoryImpl.newDialect(String databaseURL)
|
Methods in org.clazzes.jdbc2xml.schema.impl with parameters of type Dialect | |
---|---|
static String |
DDLHelper.buildAddColumn(String tableName,
ColumnInfo ci,
Dialect dialect,
String addColumnCommand,
boolean addStmtInBrackets)
|
static String |
DDLHelper.buildCreateTable(TableInfo ti,
Dialect dialect,
String suffix)
Construct a create table statement. |
Constructors in org.clazzes.jdbc2xml.schema.impl with parameters of type Dialect | |
---|---|
DropColumnCommand(ISchemaEngine schemaEngine,
TableInfo ti,
ColumnInfo ci,
Dialect dialect,
String suffix,
String addColumnCommand,
boolean addStatementInBrackets)
Construct a drop column command with rollback support. |
|
DropTableCommand(ISchemaEngine schemaEngine,
TableInfo ti,
Dialect dialect,
String suffix)
Construct a drop table command for RDMS engines, which do not support renaming of tables. |
|
DropTableCommand(ISchemaEngine schemaEngine,
TableInfo ti,
String renameTableCommand,
Dialect dialect)
Construct a drop table command for RDMS engines, which support renaming of tables. |
Uses of Dialect in org.clazzes.jdbc2xml.tools |
---|
Fields in org.clazzes.jdbc2xml.tools declared as Dialect | |
---|---|
protected static Dialect |
Main.fromDialect
|
protected static Dialect |
Main.toDialect
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |