Quadcap Software

Quadcap Embeddable Database

Quadcap Software

ROLLBACK statment

The ROLLBACK statement is used to remove all changes to the database made by the current transaction. This performs the equivalent function as the JDBC java.sql.Connection.rollback() method.

Syntax

rollbackStmt
  :  "rollback" 
    (  "transaction" 
    |  
    ) 
    
  ;


Examples

ROLLBACK;