Uses of Interface
io.github.torand.fastersql.dialect.Dialect
Packages that use Dialect
Package
Description
Provides classes and interfaces related to supported SQL dialects.
Provides classes and interfaces related to SQL fragments.
Provides classes and interfaces related to statements.
-
Uses of Dialect in io.github.torand.fastersql.dialect
Classes in io.github.torand.fastersql.dialect that implement DialectModifier and TypeClassDescriptionclassDefines the Microsoft Access SQL dialect.classDefines the ANSI/ISO (ISO/IEC 9075) SQL dialect.classDefines the H2 SQL dialect.classDefines the HyperSQL (HSQLDB) SQL dialect.classDefines the MariaDB SQL dialect.classDefines the MySQL SQL dialect.classDefines the Oracle SQL dialect.classDefines the PostgreSQL SQL dialectclassDefines the SQLite SQL dialect.classDefines the Microsoft SQL Server SQL dialect.Methods in io.github.torand.fastersql.dialect that return DialectModifier and TypeMethodDescriptionstatic DialectDialectResolver.fromConnection(Connection connection) Creates theDialectinstance corresponding to database vendor associated with specified connection. -
Uses of Dialect in io.github.torand.fastersql.sql
Methods in io.github.torand.fastersql.sql that return DialectMethods in io.github.torand.fastersql.sql with parameters of type Dialect -
Uses of Dialect in io.github.torand.fastersql.statement
Methods in io.github.torand.fastersql.statement with parameters of type DialectModifier and TypeMethodDescriptiondefault StringGets the SQL of specified dialect for this statement.static PreparedStatementBuilderPreparedStatementBuilder.using(Connection connection, Dialect dialect) Creates builder for statements to be executed on specified connection, using specified SQL dialect.