public enum DBType extends Enum<DBType>
| Enum Constant and Description |
|---|
ACCESS
Access db type.
|
DB2
Db 2 db type.
|
H2
H2 db type.
|
MARIADB
Maria db type.
|
MYSQL
Mysql db type.
|
OCEANBASE
Oceanbase db type.
|
ORACLE
Oracle db type.
|
POSTGRESQL
Postgresql db type.
|
SQLITE
Sqlite db type.
|
SQLSERVER
Sqlserver db type.
|
SYBAEE
Sybaee db type.
|
| Modifier and Type | Method and Description |
|---|---|
static DBType |
valueof(String dbType)
Valueof db type.
|
static DBType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DBType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DBType MYSQL
public static final DBType ORACLE
public static final DBType DB2
public static final DBType SQLSERVER
public static final DBType SYBAEE
public static final DBType H2
public static final DBType SQLITE
public static final DBType ACCESS
public static final DBType POSTGRESQL
public static final DBType OCEANBASE
public static final DBType MARIADB
public static DBType[] values()
for (DBType c : DBType.values()) System.out.println(c);
public static DBType 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 nullCopyright © 2023 Seata. All rights reserved.