Uses of Interface
org.clazzes.jdbc2xml.schema.Dialect

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 SchemaEngine.getDialect()
           
 Dialect ISchemaEngine.getDialect()
           
 Dialect IDialectFactory.newDialect(java.sql.DatabaseMetaData databaseMetaData)
          Return Dialect instance according to the given database meta data.
 Dialect IDialectFactory.newDialect(java.lang.String databaseURL)
          Return Dialect instance according to the given database url.
 

Methods in org.clazzes.jdbc2xml.schema with parameters of type Dialect
 void SchemaEngine.setDialect(Dialect dialect)
           
 void ISchemaEngine.setDialect(Dialect dialect)
          Normally you need not call this method, because the dialect is usually initialized by ISchemaEngine.setConnection(Connection).
 

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 untested.
 class PostgreSQLDialect
          This class implements Dialect for PostgreSQL 8.3
 

Methods in org.clazzes.jdbc2xml.schema.impl that return Dialect
 Dialect DialectFactoryImpl.newDialect(java.sql.DatabaseMetaData databaseMetaData)
           
 Dialect DialectFactoryImpl.newDialect(java.lang.String databaseURL)
           
 

Methods in org.clazzes.jdbc2xml.schema.impl with parameters of type Dialect
static java.lang.String DDLHelper.buildAddColumn(java.lang.String tableName, ColumnInfo ci, Dialect dialect, java.lang.String addColumnCommand, boolean addStmtInBrackets)
           
static java.lang.String DDLHelper.buildCreateTable(TableInfo ti, Dialect dialect, java.lang.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, java.lang.String suffix, java.lang.String addColumnCommand, boolean addStatementInBrackets)
          Construct a drop column command with rollback support.
DropTableCommand(ISchemaEngine schemaEngine, TableInfo ti, Dialect dialect, java.lang.String suffix)
          Construct a drop table command for RDMS engines, which do not support renaming of tables.
DropTableCommand(ISchemaEngine schemaEngine, TableInfo ti, java.lang.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
           
 



Copyright © 2010. All Rights Reserved.