public static enum JdbcDataset.DatabaseProvider extends Enum<JdbcDataset.DatabaseProvider>
Each database provider implements SQL syntax specific to its database engine.
| Enum Constant and Description |
|---|
POSTGRESQL
PostgreSQL database provider.
|
| Modifier and Type | Method and Description |
|---|---|
abstract String |
escapeKeyword(String keyword)
Escapes a SQL keyword to make it safe for use as an identifier.
|
abstract String |
getCreateTableSql(String tableName)
Returns the SQL statement to create a table with the given name.
|
static JdbcDataset.DatabaseProvider |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JdbcDataset.DatabaseProvider[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JdbcDataset.DatabaseProvider POSTGRESQL
public static JdbcDataset.DatabaseProvider[] values()
for (JdbcDataset.DatabaseProvider c : JdbcDataset.DatabaseProvider.values()) System.out.println(c);
public static JdbcDataset.DatabaseProvider valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic abstract String getCreateTableSql(String tableName)
tableName - the name of the table to createCopyright (c) 2006-2026 North Concepts Inc. All Rights Reserved.