Use this statement to make changes to the database permanent.
COMMIT [ WORK ]
Using UltraLite SQL creates a transaction. A transaction consists of all changes (INSERTs, UPDATEs, and DELETEs) since the last ROLLBACK or COMMIT. The COMMIT statement ends the current transaction and makes all changes made during the transaction permanent in the database.
Changes to the database objects using the ALTER, CREATE, and DROP statements are committed automatically.
The following statement makes the changes in the current transaction permanent in the database:
COMMIT; |
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |