|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Dialect | |
|---|---|
| com.github.drinkjava2.jdialects | |
| Uses of Dialect in com.github.drinkjava2.jdialects |
|---|
| Methods in com.github.drinkjava2.jdialects that return Dialect | |
|---|---|
static Dialect |
GuessDialectUtils.guessDialect(Connection jdbcConnection)
Guess dialect based on given JDBC connection instance, Note: this method does not close connection |
static Dialect |
Dialect.guessDialect(Connection connection)
Guess Dialect by given connection, note:this method does not close connection |
static Dialect |
GuessDialectUtils.guessDialect(DataSource dataSource)
Guess dialect based on given dataSource |
static Dialect |
Dialect.guessDialect(DataSource datasource)
Guess Dialect by given data source |
static Dialect |
GuessDialectUtils.guessDialect(String databaseName,
Object... majorVersionMinorVersion)
Guess Dialect by give databaseName, MajorVersion, MinorVersion |
static Dialect |
Dialect.guessDialect(String databaseName,
Object... majorVersionMinorVersion)
Guess Dialect by given databaseName, major & minor version if have |
static Dialect |
Dialect.valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Dialect[] |
Dialect.values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods in com.github.drinkjava2.jdialects with parameters of type Dialect | |
|---|---|
protected static void |
DDLFeatures.initDDLFeatures(Dialect dia,
DDLFeatures ddl)
|
protected static String |
DialectPaginationTemplate.initializePaginSQLTemplate(Dialect d)
Return pagination template of this Dialect |
protected static String |
DialectPaginationTemplate.initializeTopLimitSqlTemplate(Dialect d)
Return top limit sql template of this Dialect |
protected static void |
DialectTypeMappingTemplate.initializeTypeMappings(Dialect d)
|
static boolean |
ReservedDBWords.isReservedWord(Dialect dialect,
String word)
Check if is a dialect reserved word of ANSI-SQL reserved word |
protected static String |
FunctionUtils.render(Dialect d,
String functionName,
Object... args)
The render method translate function template to real SQL piece |
static String[] |
DDLCreateUtils.toCreateDDL(Dialect dialect,
Table... tables)
Transfer tables to DDL by given dialect and without format it, if want get a formatted DDL, use DDLFormatter.format(DDLs) method to format it |
static String[] |
DDLDropUtils.toDropDDL(Dialect dialect,
Table... tables)
Transfer tables to drop DDL and without format it |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||