Quadcap Software

Quadcap Embeddable Database

Quadcap Software

COMMIT statment

The COMMIT statement is used to cause all changes to the database made by the current transaction to become permanent. This performs the equivalent function as the JDBC java.sql.Connection.commit() method.

Syntax

commitStmt
  :  "commit" 
    (  "work" 
    |  
    ) 
    
  ;


Examples

COMMIT WORK;

Implementation Notes

This change in QED was accompanied by removing the special case parsing of COMMIT and ROLLBACK in the SQL Loader.