workbench.sql.commands |
Handling of important SQL commands (such as SELECT or DDL commands)
|
Java Source File Name | Type | Comment |
AlterSessionCommand.java | Class | |
DdlCommand.java | Class | |
DdlCommandTest.java | Class | |
IgnoredCommand.java | Class | This class simply ignores the command and does not send it to the DBMS
Thus scripts e.g. |
SelectCommand.java | Class | Implementation of the SELECT statement. |
SetCommand.java | Class | This class implements a wrapper for the SET command
Oracle's SET command is only valid from within SQL*Plus.
By supplying an implementation for the Workbench, we can ignore the errors
reported by the JDBC interface, so that SQL scripts intended for SQL*Plus
can also be run from within the workbench
For other DBMS this enables the support for controlling autocommit
through a SQL command. |
SingleVerbCommand.java | Class | |
UpdatingCommand.java | Class | |
UpdatingCommandTest.java | Class | |
UseCommand.java | Class | MS SQL Server's and MySQL's USE command. |