Menu

New release 0.1.1.628

** 2003/05/29 **
Changed method names to reflect what they do.

Old name New name
ExecuteDDL ExecuteBatch
ExecuteDML ExecuteSelect

New
ExecuteStatement
Help

ExecuteBatch executes SQL statements that don't return datasets. It can execute many
statements separated by semicolon (;) all in a single transaction. Great for executing many
INSERTS, DELETES and UPDATES, etc. If you need to execute a statement that contains
a semicolon in the statement (for example CREATE TRIGGERS) then use ExecuteStatement,
which executes a single statement.
Look at the VB example 1 to see how these methods are called.

Posted by Javier Soques 2003-05-29

Log in to post a comment.