public enum SQLType extends Enum<SQLType>
| Enum Constant and Description |
|---|
ALTER
Alter sql type.
|
ALTER_SEQUENCE
Alter sequence sql type.
|
ALTER_TABLE
Alter table sql type.
|
CHECK_TABLE
Check table sql type.
|
CREATE
Create sql type.
|
CREATE_INDEX
Create index sql type.
|
CREATE_SEQUENCE
Create sequence sql type.
|
CREATE_TABLE
Create table sql type.
|
DEBUG
Debug sql type.
|
DELETE
Delete sql type.
|
DESC
Desc sql type.
|
DROP
Drop sql type.
|
DROP_INDEX
Drop index sql type.
|
DROP_SEQUENCE
Drop sequence sql type.
|
DROP_TABLE
Drop table sql type.
|
DUMP
Dump sql type.
|
EXPLAIN
Explain sql type.
|
GET_SEQUENCE
Get sequence sql type.
|
INSERT
Insert sql type.
|
INSERT_IGNORE
Insert ignore sql type.
|
INSERT_ON_DUPLICATE_UPDATE
Insert on duplicate update sql type.
|
KILL
Kill sql type.
|
LOAD
Load sql type.
|
LOCK_TABLES
Lock tables sql type.
|
MERGE
Merge sql type.
|
MULTI_DELETE
multi delete/update
|
MULTI_UPDATE
Multi update sql type.
|
PROCEDURE
Stored procedure
|
RELEASE_DBLOCK
Release dblock sql type.
|
RELOAD
Reload sql type.
|
RENAME
Rename sql type.
|
REPLACE
Replace sql type.
|
SAVE_POINT
Save point sql type.
|
SELECT
Select sql type.
|
SELECT_FOR_UPDATE
Select for update sql type.
|
SELECT_FOUND_ROWS
Select found rows.
|
SELECT_FROM_UPDATE
Select from update sql type.
|
SELECT_LAST_INSERT_ID
Select last insert id
|
SELECT_UNION
Select union sql type.
|
SELECT_WITHOUT_TABLE
Select without table sql type.
|
SET
Set sql type.
|
SHOW
Show sql type.
|
SHOW_SEQUENCES
Show sequences sql type.
|
TDDL_SHOW
Tddl show sql type.
|
TRUNCATE
Truncate sql type.
|
UNLOCK_TABLES
Unlock tables sql type.
|
UPDATE
Update sql type.
|
UPDATE_JOIN
update join sql type
|
| Modifier and Type | Method and Description |
|---|---|
int |
value()
Value int.
|
static SQLType |
valueOf(int i)
Value of sql type.
|
static SQLType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SQLType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SQLType SELECT
public static final SQLType INSERT
public static final SQLType UPDATE
public static final SQLType DELETE
public static final SQLType SELECT_FOR_UPDATE
public static final SQLType REPLACE
public static final SQLType TRUNCATE
public static final SQLType CREATE
public static final SQLType DROP
public static final SQLType LOAD
public static final SQLType MERGE
public static final SQLType SHOW
public static final SQLType ALTER
public static final SQLType RENAME
public static final SQLType DUMP
public static final SQLType DEBUG
public static final SQLType EXPLAIN
public static final SQLType PROCEDURE
public static final SQLType DESC
public static final SQLType SELECT_LAST_INSERT_ID
public static final SQLType SELECT_WITHOUT_TABLE
public static final SQLType CREATE_SEQUENCE
public static final SQLType SHOW_SEQUENCES
public static final SQLType GET_SEQUENCE
public static final SQLType ALTER_SEQUENCE
public static final SQLType DROP_SEQUENCE
public static final SQLType TDDL_SHOW
public static final SQLType SET
public static final SQLType RELOAD
public static final SQLType SELECT_UNION
public static final SQLType CREATE_TABLE
public static final SQLType DROP_TABLE
public static final SQLType ALTER_TABLE
public static final SQLType SAVE_POINT
public static final SQLType SELECT_FROM_UPDATE
public static final SQLType MULTI_DELETE
public static final SQLType MULTI_UPDATE
public static final SQLType CREATE_INDEX
public static final SQLType DROP_INDEX
public static final SQLType KILL
public static final SQLType RELEASE_DBLOCK
public static final SQLType LOCK_TABLES
public static final SQLType UNLOCK_TABLES
public static final SQLType CHECK_TABLE
public static final SQLType SELECT_FOUND_ROWS
public static final SQLType INSERT_IGNORE
public static final SQLType INSERT_ON_DUPLICATE_UPDATE
public static final SQLType UPDATE_JOIN
public static SQLType[] values()
for (SQLType c : SQLType.values()) System.out.println(c);
public static SQLType 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 int value()
public static SQLType valueOf(int i)
i - theCopyright © 2023 Seata. All rights reserved.