Thread
:
passing array to embedded sql
View Single Post
06-17-2005, 06:24 AM
#
4
(
permalink
)
DJMaze
Senior Contributor
Join Date: Mar 2005
Posts: 673
in mysql/postgresql:
query: BEGIN;
your queries here
query: COMMIT;
on failure:
query: ROLLBACK;
in ms sql:
query: BEGIN TRANSACTION;
your queries here
query: COMMIT;
on failure:
query: ROLLBACK;
I don't know the exact command for ODBC/Access though
DJMaze
View Public Profile
Find More Posts by DJMaze