Execute

Syntax

EXECUTE {String
Identifier } [ USING { String
Identifier } ]

Description

Has several uses:

Examples


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; 


[ Previous Page
Next Page
Table of Contents
Index ]