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 TypeClassDescriptionclass
Defines the Microsoft Access SQL dialect.class
Defines the ANSI/ISO (ISO/IEC 9075) SQL dialect.class
Defines the H2 SQL dialect.class
Defines the HyperSQL (HSQLDB) SQL dialect.class
Defines the MariaDB SQL dialect.class
Defines the MySQL SQL dialect.class
Defines the Oracle SQL dialect.class
Defines the PostgreSQL SQL dialectclass
Defines the SQLite SQL dialect.class
Defines the Microsoft SQL Server SQL dialect.Methods in io.github.torand.fastersql.dialect that return DialectModifier and TypeMethodDescriptionstatic Dialect
Dialect.fromConnection
(Connection connection) Creates theDialect
instance 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 String
Gets the SQL of specified dialect for this statement.static PreparedStatementBuilder
PreparedStatementBuilder.using
(Connection connection, Dialect dialect) Creates builder for statements to be executed on specified connection, using specified SQL dialect.