Executing SQL Statements - DbVisualizer 10.0 Users Guide - DbVisualizer Users Guide
Executing SQL Statements - DbVisualizer 10.0 Users Guide - DbVisualizer Users Guide
In the SQL Commander, you can execute one or multiple statements. You can also control if the
execution should stop or continue when the execution of a statement results in a warning or error.
Execute a Script with Multiple Statements
Execute Only the Current Statement
Execute Buffer
Control Execution after a Warning or an Error
Comments in the SQL editor are sent to the database when you use SQL Commander->Execute,
unless you have enabled Strip Comments when Executing in the SQL Commander->SQL
Commander Options menu.
Execute Current determines the actual statement by parsing the editor buffer using the standard
statement delimiters.The current statement is the statement containing the caret or that ends on
the line with the caret. This means that the caret may be after the statement delimiter as long as
there is no other statement on the same line.
If you are unsure what the boundaries are for the current statement then use Edit->Select Current
Statement. This will highlight the current statement without executing it.
confluence.dbvis.com/display/UG100/Executing+SQL+Statements 1/2
12/18/2020 Executing SQL Statements - DbVisualizer 10.0 Users Guide - DbVisualizer Users Guide
Execute Buffer
The SQL Commander->Execute Buffer sends all of the content in the SQL editor to the database in a
single run. This is useful when executing complex SQL statements such as CREATE STORE PROCEDURE
(or similar) where statement splitting on semicolon must not be done as with SQL Commander->Execute
and SQL Commander->Execute Current.
@stop on error;
@stop on sqlwarning;
@stop on norows;
@continue on error;
@continue on sqlwarning;
@continue on norows;
No labels
confluence.dbvis.com/display/UG100/Executing+SQL+Statements 2/2