| Modifier and Type | Method and Description |
|---|---|
void |
TableExtractor.extractTablesFromSQLStatement(SQLStatement sqlStatement)
Extract table that should be rewrite from sql statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractSQLStatement
SQL statement abstract class.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
DALStatement
DAL statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AnalyzeTableStatement
Analyze table statement.
|
class |
ExplainStatement
Explain statement.
|
class |
SetStatement
Set statement.
|
class |
UseStatement
Use database statement.
|
| Modifier and Type | Method and Description |
|---|---|
Optional<SQLStatement> |
ExplainStatement.getStatement()
Get SQL statement.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
DCLStatement
DCL statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AlterRoleStatement
Alter role statement.
|
class |
AlterUserStatement
Alter user statement.
|
class |
CreateRoleStatement
Create role statement.
|
class |
CreateUserStatement
Create user statement.
|
class |
DropRoleStatement
Drop role statement.
|
class |
DropUserStatement
Drop role statement.
|
class |
GrantStatement
Grant statement.
|
class |
RevokeStatement
Revoke statement.
|
class |
SetRoleStatement
Set role statement.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
DDLStatement
DDL statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AlterDatabaseStatement
Alter Database statement.
|
class |
AlterFunctionStatement
Alter function statement.
|
class |
AlterIndexStatement
Alter index statement.
|
class |
AlterProcedureStatement
Alter procedure statement.
|
class |
AlterSystemStatement
Alter system statement.
|
class |
AlterTablespaceStatement
Alter tablespace statement.
|
class |
AlterTableStatement
Alter table statement.
|
class |
AlterViewStatement
Alter view statement.
|
class |
CreateDatabaseStatement
Create database statement.
|
class |
CreateFunctionStatement
Create function statement.
|
class |
CreateIndexStatement
Create index statement.
|
class |
CreateProcedureStatement
Create procedure statement.
|
class |
CreateTablespaceStatement
Create tablespace statement.
|
class |
CreateTableStatement
Create table statement.
|
class |
CreateViewStatement
Create view statement.
|
class |
DropDatabaseStatement
Drop database statement.
|
class |
DropFunctionStatement
Drop function statement.
|
class |
DropIndexStatement
Drop index statement.
|
class |
DropProcedureStatement
Drop procedure statement.
|
class |
DropTablespaceStatement
Drop tablespace statement.
|
class |
DropTableStatement
Drop table statement.
|
class |
DropViewStatement
Drop view statement.
|
class |
TruncateStatement
Truncate table statement.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
DMLStatement
DML statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
CallStatement
Call statement.
|
class |
DeleteStatement
Delete statement.
|
class |
DoStatement
Do statement.
|
class |
EmptyStatement
Empty statement.
|
class |
InsertStatement
Insert statement.
|
class |
MergeStatement
Merge statement.
|
class |
SelectStatement
Select statement.
|
class |
UpdateStatement
Update statement.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
RLStatement
Replication statement.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
TCLStatement
Transaction Control Language statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BeginTransactionStatement
Begin transaction statement.
|
class |
CommitStatement
Commit statement.
|
class |
ReleaseSavepointStatement
Release savepoint statement.
|
class |
RollbackStatement
Rollback statement.
|
class |
RollbackToSavepointStatement
Rollback to savepoint statement.
|
class |
SavepointStatement
Savepoint statement.
|
class |
SetAutoCommitStatement
Set auto commit statement.
|
class |
SetConstraintsStatement
Set constraints statement.
|
class |
SetTransactionStatement
Set transaction statement.
|
class |
XAStatement
Set transaction statement.
|
| Modifier and Type | Method and Description |
|---|---|
static boolean |
SQLUtil.isReadOnly(SQLStatement sqlStatement)
Determine whether SQL is read-only.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
MySQLStatement
MySQL statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
MySQLAnalyzeTableStatement
MySQL analyze table statement.
|
class |
MySQLCacheIndexStatement
MySQL cache index statement.
|
class |
MySQLChecksumTableStatement
MySQL checksum table statement.
|
class |
MySQLCreateLoadableFunctionStatement
MySQL create loadable function statement.
|
class |
MySQLExplainStatement
MySQL explain statement.
|
class |
MySQLFlushStatement
MySQL flush statement.
|
class |
MySQLInstallPluginStatement
MySQL install plugin statement.
|
class |
MySQLKillStatement
MySQL kill statement.
|
class |
MySQLLoadIndexInfoStatement
MySQL load index info statement.
|
class |
MySQLOptimizeTableStatement
MySQL optimize table statement.
|
class |
MySQLRepairTableStatement
MySQL repair table statement.
|
class |
MySQLResetStatement
MySQL reset statement.
|
class |
MySQLSetStatement
MySQL set statement.
|
class |
MySQLShowBinaryLogsStatement
MySQL show binary logs statement.
|
class |
MySQLShowBinlogStatement
MySQL show binlog statement.
|
class |
MySQLShowColumnsStatement
MySQL show columns statement.
|
class |
MySQLShowCreateEventStatement
MySQL show create event statement.
|
class |
MySQLShowCreateFunctionStatement
MySQL show create function statement.
|
class |
MySQLShowCreateProcedureStatement
MySQL show create procedure statement.
|
class |
MySQLShowCreateTableStatement
MySQL show create table statement.
|
class |
MySQLShowCreateViewStatement
MySQL show create view statement.
|
class |
MySQLShowDatabasesStatement
MySQL show databases statement.
|
class |
MySQLShowErrorsStatement
MySQL show errors statement.
|
class |
MySQLShowIndexStatement
MySQL show index statement.
|
class |
MySQLShowOtherStatement
MySQL other show statement.
|
class |
MySQLShowProcessListStatement
MySQL show process list statement.
|
class |
MySQLShowStatusStatement
MySQL show status statement.
|
class |
MySQLShowTablesStatement
MySQL show tables statement.
|
class |
MySQLShowTableStatusStatement
MySQL show table status statement.
|
class |
MySQLShowWarningsStatement
MySQL show warnings statement.
|
class |
MySQLUninstallPluginStatement
MySQL uninstall plugin statement.
|
class |
MySQLUseStatement
Use database statement for MySQL.
|
| Modifier and Type | Class and Description |
|---|---|
class |
MySQLAlterUserStatement
MySQL alter user statement.
|
class |
MySQLCreateRoleStatement
MySQL create role statement.
|
class |
MySQLCreateUserStatement
MySQL create user statement.
|
class |
MySQLDropRoleStatement
MySQL drop role statement.
|
class |
MySQLDropUserStatement
MySQL drop user statement.
|
class |
MySQLGrantStatement
MySQL grant statement.
|
class |
MySQLRenameUserStatement
MySQL rename user statement.
|
class |
MySQLRevokeStatement
MySQL revoke statement.
|
class |
MySQLSetDefaultRoleStatement
MySQL set default role statement.
|
class |
MySQLSetPasswordStatement
MySQL set password statement.
|
class |
MySQLSetRoleStatement
MySQL set role statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
MySQLAlterDatabaseStatement
MySQL alter database statement.
|
class |
MySQLAlterEventStatement
MySQL alter event statement.
|
class |
MySQLAlterFunctionStatement
MySQL alter function statement.
|
class |
MySQLAlterInstanceStatement
MySQL alter instance statement.
|
class |
MySQLAlterLogfileGroupStatement
MySQL alter logfile group statement.
|
class |
MySQLAlterProcedureStatement
MySQL alter procedure statement.
|
class |
MySQLAlterServerStatement
MySQL alter server statement.
|
class |
MySQLAlterTablespaceStatement
MySQL alter tablespace statement.
|
class |
MySQLAlterTableStatement
MySQL alter table statement.
|
class |
MySQLAlterViewStatement
MySQL alter view statement.
|
class |
MySQLCreateDatabaseStatement
MySQL create database statement.
|
class |
MySQLCreateEventStatement
MySQL create event statement.
|
class |
MySQLCreateFunctionStatement
MySQL create function statement.
|
class |
MySQLCreateIndexStatement
MySQL create index statement.
|
class |
MySQLCreateLogfileGroupStatement
MySQL create logfile group statement.
|
class |
MySQLCreateProcedureStatement
MySQL create procedure statement.
|
class |
MySQLCreateServerStatement
MySQL create server statement.
|
class |
MySQLCreateTablespaceStatement
MySQL create tablespace statement.
|
class |
MySQLCreateTableStatement
MySQL create table statement.
|
class |
MySQLCreateTriggerStatement
MySQL create trigger statement.
|
class |
MySQLCreateViewStatement
MySQL create view statement.
|
class |
MySQLDropDatabaseStatement
MySQL drop database statement.
|
class |
MySQLDropEventStatement
MySQL drop event statement.
|
class |
MySQLDropFunctionStatement
MySQL drop function statement.
|
class |
MySQLDropIndexStatement
MySQL drop index statement.
|
class |
MySQLDropLogfileGroupStatement
MySQL drop logfile group statement.
|
class |
MySQLDropProcedureStatement
MySQL drop procedure statement.
|
class |
MySQLDropServerStatement
MySQL drop server statement.
|
class |
MySQLDropTablespaceStatement
MySQL drop tablespace statement.
|
class |
MySQLDropTableStatement
MySQL drop table statement.
|
class |
MySQLDropTriggerStatement
MySQL drop trigger statement.
|
class |
MySQLDropViewStatement
MySQL drop view statement.
|
class |
MySQLRenameTableStatement
MySQL rename table statement.
|
class |
MySQLTruncateStatement
MySQL truncate table statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
MySQLCallStatement
MySQL call statement.
|
class |
MySQLDeleteStatement
MySQL delete statement.
|
class |
MySQLDoStatement
MySQL do statement.
|
class |
MySQLInsertStatement
MySQL insert statement.
|
class |
MySQLSelectStatement
MySQL select statement.
|
class |
MySQLUpdateStatement
MySQL update statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
MySQLChangeMasterStatement
MySQL change master statement.
|
class |
MySQLStartSlaveStatement
MySQL start slave statement.
|
class |
MySQLStopSlaveStatement
MySQL stop slave statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
MySQLBeginTransactionStatement
MySQL begin transaction statement.
|
class |
MySQLCommitStatement
MySQL commit statement.
|
class |
MySQLRollbackStatement
MySQL rollback statement.
|
class |
MySQLSavepointStatement
MySQL savepoint statement.
|
class |
MySQLSetAutoCommitStatement
MySQL set auto commit statement.
|
class |
MySQLSetTransactionStatement
MySQL set transaction statement.
|
class |
MySQLXAStatement
MySQL savepoint statement.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
OracleStatement
Oracle statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
OracleAlterRoleStatement
Oracle alter role statement.
|
class |
OracleAlterUserStatement
Oracle alter user statement.
|
class |
OracleCreateRoleStatement
Oracle create role statement.
|
class |
OracleCreateUserStatement
Oracle create user statement.
|
class |
OracleDropRoleStatement
Oracle drop role statement.
|
class |
OracleDropUserStatement
Oracle drop user statement.
|
class |
OracleGrantStatement
Oracle grant statement.
|
class |
OracleRevokeStatement
Oracle revoke statement.
|
class |
OracleSetRoleStatement
Oracle set role statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
OracleAlterDatabaseStatement
Oracle alter database statement.
|
class |
OracleAlterIndexStatement
Oracle alter index statement.
|
class |
OracleAlterSessionStatement
Oracle alter session statement.
|
class |
OracleAlterSynonymStatement
Oracle alter synonym statement.
|
class |
OracleAlterSystemStatement
Oracle alter system statement.
|
class |
OracleAlterTableStatement
Oracle alter table statement.
|
class |
OracleCreateIndexStatement
Oracle create index statement.
|
class |
OracleCreateTableStatement
Oracle create table statement.
|
class |
OracleDropIndexStatement
Oracle drop index statement.
|
class |
OracleDropTableStatement
Oracle drop table statement.
|
class |
OracleTruncateStatement
Oracle truncate table statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
OracleDeleteStatement
Oracle delete statement.
|
class |
OracleInsertStatement
Oracle insert statement.
|
class |
OracleMergeStatement
Oracle merge statement.
|
class |
OracleSelectStatement
Oracle select statement.
|
class |
OracleUpdateStatement
Oracle update statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
OracleCommitStatement
Oracle commit statement.
|
class |
OracleRollbackStatement
Oracle rollback statement.
|
class |
OracleSavepointStatement
Oracle savepoint statement.
|
class |
OracleSetConstraintsStatement
Oracle set constraints statement.
|
class |
OracleSetTransactionStatement
Oracle set transaction statement.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
PostgreSQLStatement
PostgreSQL statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
PostgreSQLAnalyzeTableStatement
PostgreSQL analyze table statement.
|
class |
PostgreSQLExplainStatement
PostgreSQL explain statement.
|
class |
PostgreSQLLoadStatement
PostgreSQL load statement.
|
class |
PostgreSQLResetParameterStatement
PostgreSQL reset parameter statement.
|
class |
PostgreSQLSetStatement
PostgreSQL set statement.
|
class |
PostgreSQLShowStatement
PostgreSQL show statement.
|
class |
PostgreSQLVacuumStatement
PostgreSQL vacuum statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
PostgreSQLAlterRoleStatement
PostgreSQL alter role statement.
|
class |
PostgreSQLAlterUserStatement
PostgreSQL alter user statement.
|
class |
PostgreSQLCreateRoleStatement
PostgreSQL create role statement.
|
class |
PostgreSQLCreateUserStatement
PostgreSQL create user statement.
|
class |
PostgreSQLDropRoleStatement
PostgreSQL drop role statement.
|
class |
PostgreSQLDropUserStatement
PostgreSQL drop user statement.
|
class |
PostgreSQLGrantStatement
PostgreSQL grant statement.
|
class |
PostgreSQLRevokeStatement
PostgreSQL revoke statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
PostgreSQLAlterFunctionStatement
PostgreSQL alter function statement.
|
class |
PostgreSQLAlterIndexStatement
PostgreSQL alter index statement.
|
class |
PostgreSQLAlterProcedureStatement
PostgreSQL alter procedure statement.
|
class |
PostgreSQLAlterSequenceStatement
PostgreSQL alter sequence statement.
|
class |
PostgreSQLAlterTablespaceStatement
PostgreSQL alter tablespace statement.
|
class |
PostgreSQLAlterTableStatement
PostgreSQL alter table statement.
|
class |
PostgreSQLAlterViewStatement
PostgreSQL alter view statement.
|
class |
PostgreSQLCreateDatabaseStatement
PostgreSQL create database statement.
|
class |
PostgreSQLCreateFunctionStatement
PostgreSQL create function statement.
|
class |
PostgreSQLCreateIndexStatement
PostgreSQL create index statement.
|
class |
PostgreSQLCreateProcedureStatement
PostgreSQL create procedure statement.
|
class |
PostgreSQLCreateSequenceStatement
PostgreSQL create sequence statement.
|
class |
PostgreSQLCreateTablespaceStatement
PostgreSQL create tablespace statement.
|
class |
PostgreSQLCreateTableStatement
PostgreSQL create table statement.
|
class |
PostgreSQLCreateViewStatement
PostgreSQL create view statement.
|
class |
PostgreSQLDeallocateStatement
PostgreSQL deallocate statement.
|
class |
PostgreSQLDropDatabaseStatement
PostgreSQL drop database statement.
|
class |
PostgreSQLDropFunctionStatement
PostgreSQL drop function statement.
|
class |
PostgreSQLDropIndexStatement
PostgreSQL drop index statement.
|
class |
PostgreSQLDropProcedureStatement
PostgreSQL drop procedure statement.
|
class |
PostgreSQLDropSequenceStatement
PostgreSQL drop sequence statement.
|
class |
PostgreSQLDropTablespaceStatement
PostgreSQL drop tablespace statement.
|
class |
PostgreSQLDropTableStatement
PostgreSQL drop table statement.
|
class |
PostgreSQLDropViewStatement
PostgreSQL drop view statement.
|
class |
PostgreSQLExecuteStatement
PostgreSQL execute statement.
|
class |
PostgreSQLPrepareStatement
PostgreSQL prepare statement.
|
class |
PostgreSQLTruncateStatement
PostgreSQL truncate table statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
PostgreSQLCallStatement
PostgreSQL call statement.
|
class |
PostgreSQLDeleteStatement
PostgreSQL delete statement.
|
class |
PostgreSQLDoStatement
PostgreSQL do statement.
|
class |
PostgreSQLInsertStatement
PostgreSQL insert statement.
|
class |
PostgreSQLSelectStatement
PostgreSQL select statement.
|
class |
PostgreSQLUpdateStatement
PostgreSQL update statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
PostgreSQLBeginTransactionStatement
PostgreSQL begin transaction statement.
|
class |
PostgreSQLCommitStatement
PostgreSQL commit statement.
|
class |
PostgreSQLReleaseSavepointStatement
PostgreSQL release savepoint statement.
|
class |
PostgreSQLRollbackStatement
PostgreSQL rollback statement.
|
class |
PostgreSQLRollbackToSavepointStatement
PostgreSQL rollback to savepoint statement.
|
class |
PostgreSQLSavepointStatement
PostgreSQL savepoint statement.
|
class |
PostgreSQLSetTransactionStatement
PostgreSQL set transaction statement.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
SQL92Statement
SQL92 statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
SQL92GrantStatement
SQL92 grant statement.
|
class |
SQL92RevokeStatement
SQL92 revoke statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
SQL92AlterTableStatement
SQL92 alter table statement.
|
class |
SQL92CreateTableStatement
SQL92 create table statement.
|
class |
SQL92DropTableStatement
SQL92 drop table statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
SQL92DeleteStatement
SQL92 delete statement.
|
class |
SQL92InsertStatement
SQL92 insert statement.
|
class |
SQL92SelectStatement
SQL92 select statement.
|
class |
SQL92UpdateStatement
SQL92 update statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
SQL92CommitStatement
SQL92 commit statement.
|
class |
SQL92RollbackStatement
SQL92 rollback statement.
|
class |
SQL92SetTransactionStatement
SQL92 set transaction statement.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
SQLServerStatement
SQLServer statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
SQLServerAlterLoginStatement
SQLServer alter login statement.
|
class |
SQLServerAlterRoleStatement
SQLServer alter role statement.
|
class |
SQLServerAlterUserStatement
SQLServer alter user statement.
|
class |
SQLServerCreateLoginStatement
SQLServer create login statement.
|
class |
SQLServerCreateRoleStatement
SQLServer create role statement.
|
class |
SQLServerCreateUserStatement
SQLServer create user statement.
|
class |
SQLServerDenyUserStatement
SQLServer deny user statement.
|
class |
SQLServerDropLoginStatement
SQLServer drop login statement.
|
class |
SQLServerDropRoleStatement
SQLServer drop role statement.
|
class |
SQLServerDropUserStatement
SQLServer drop user statement.
|
class |
SQLServerGrantStatement
SQLServer grant statement.
|
class |
SQLServerRevokeStatement
SQLServer revoke statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
SQLServerAlterIndexStatement
SQLServer alter index statement.
|
class |
SQLServerAlterTableStatement
SQLServer alter table statement.
|
class |
SQLServerCreateIndexStatement
SQLServer create index statement.
|
class |
SQLServerCreateTableStatement
SQLServer create table statement.
|
class |
SQLServerDropIndexStatement
SQLServer drop index statement.
|
class |
SQLServerDropTableStatement
SQLServer drop table statement.
|
class |
SQLServerTruncateStatement
SQLServer truncate table statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
SQLServerDeleteStatement
SQLServer delete statement.
|
class |
SQLServerInsertStatement
SQLServer insert statement.
|
class |
SQLServerSelectStatement
SQLServer select statement.
|
class |
SQLServerUpdateStatement
SQLServer update statement.
|
| Modifier and Type | Class and Description |
|---|---|
class |
SQLServerBeginTransactionStatement
SQLServer begin transaction statement.
|
class |
SQLServerCommitStatement
SQLServer commit statement.
|
class |
SQLServerRollbackStatement
SQLServer rollback statement.
|
class |
SQLServerSavepointStatement
SQLServer savepoint statement.
|
class |
SQLServerSetAutoCommitStatement
SQLServer set auto commit statement.
|
class |
SQLServerSetTransactionStatement
SQLServer set transaction statement.
|
Copyright © 2021 The Apache Software Foundation. All rights reserved.