Uses of Class
net.sf.dewdrop.sql.dialect.Dialect

Packages that use Dialect
net.sf.dewdrop.sql.dialect   
net.sf.dewdrop.sqlml   
net.sf.dewdrop.sqlml.config   
 

Uses of Dialect in net.sf.dewdrop.sql.dialect
 

Subclasses of Dialect in net.sf.dewdrop.sql.dialect
 class GenericDialect
           
 

Fields in net.sf.dewdrop.sql.dialect declared as Dialect
static Dialect Dialect.DEFAULT_DIALECT
           
 

Methods in net.sf.dewdrop.sql.dialect that return Dialect
static Dialect Dialect.getDialect(String dialectName)
           
 

Uses of Dialect in net.sf.dewdrop.sqlml
 

Methods in net.sf.dewdrop.sqlml with parameters of type Dialect
 String SqlmlComponent.toSql(Dialect dialect)
          Returns the String output of this SqlmlComponent and all of its child components.
 void SqlmlComponent.writeSql(Writer out, Dialect dialect)
           
 

Uses of Dialect in net.sf.dewdrop.sqlml.config
 

Fields in net.sf.dewdrop.sqlml.config declared as Dialect
protected  Dialect Configuration.dialect
           
 

Methods in net.sf.dewdrop.sqlml.config that return Dialect
 Dialect Configuration.getDialect()
           
 

Methods in net.sf.dewdrop.sqlml.config with parameters of type Dialect
 void Configuration.setDialect(Dialect dialect)
           
 

Constructors in net.sf.dewdrop.sqlml.config with parameters of type Dialect
Configuration(Dialect dialect)