How it works

The Instruction operation "query" silently executes an SQL statement as specified by the inputs. You can use this operation to perform a one off one way query (such as an update). No results are returned but query errors are displayed.

"Query" Examples

Example 1: Basic usage

<instruction operation="query">
	<input>
		create temporary table just_an_example (id int)
	</input>
</instruction>
creates the temporary table just_an_example



Last Modified: Thu, 15 Jan 2015