replaceSelectedSQLScript(String sqlScript, boolean select) Replace the currently selected text in the SQL entry area
with the passed text.
void
setEntireSQLScript(String sqlScript) Replace the contents of the SQL entry area with the passed
SQL script without selecting it.
void
setEntireSQLScript(String sqlScript, boolean select) Replace the contents of the SQL entry area with the passed
SQL script and specify whether to select it.
void
setSQLScriptSelectionEnd(int end) Set the offset into the SQL entry area where the current select
ends.
void
setSQLScriptSelectionStart(int start) Set the offset into the SQL entry area where the current select
starts.
The passed SQL should be added to the SQL history.
Parameters: sql - SQL to be added to history. throws: IllegalArgumentException - Thrown if nullsql passed.
Append the passed SQL script to the SQL entry area and specify
whether it should be selected.
Parameters: sqlScript - The script to be appended. Parameters: select - If true then select the passed scriptin the sql entry area.
Replace the currently selected text in the SQL entry area
with the passed text.
Parameters: sqlScript - The script to be placed in the SQL entry area. Parameters: select - If true then select the passed scriptin the sql entry area.
Replace the contents of the SQL entry area with the passed
SQL script without selecting it.
Parameters: sqlScript - The script to be placed in the SQL entry area.
Replace the contents of the SQL entry area with the passed
SQL script and specify whether to select it.
Parameters: sqlScript - The script to be placed in the SQL entry area. Parameters: select - If true then select the passed scriptin the sql entry area.