EXECUTE { SQLString | PreparedStatementIdentifier } [ USING { String | Identifier } ]
When auto-commit mode is on, the Using's result set is closed upon the first execution of the Execute statement. To ensure multiple-row execution of the Execute command, use the Autocommit command to turn auto-commit off.
ij> autocommit off; ij> prepare menuInsert as 'INSERT INTO menu VALUES (?, ?, ?)'; ij> execute menuInsert using 'VALUES (''entree'', ''lamb chop'', 14), (''dessert'', ''creme brulee'', 6)'; 1 row inserted/updated/deleted 1 row inserted/updated/deleted ij> commit;