| Allegro CL version 8.2 Unrevised from 8.1 to 8.2. 8.1 version |
Arguments: action &key db
end-transaction only has an effect if autocommit mode has been turned off with set-autocommit. Autocommit mode is per database.
action must be either :commit
or :rollback
. :commit
will make
the changes in the current transaction visible to all other users of
the database. :rollback
will undo all changes made
in this transaction. Only the caller of the function will notice the
change as other users of the database never saw the changes.
After either commiting or rolling back, end-transaction then starts a new transaction.
db identifies that
database. It defaults to *default-database*
.
See aodbc.htm for more information on Allegro ODBC.
Copyright (c) 1998-2016, Franz Inc. Oakland, CA., USA. All rights reserved.
This page was not revised from the 8.1 page.
Created 2010.1.21.
| Allegro CL version 8.2 Unrevised from 8.1 to 8.2. 8.1 version |