COMMIT
- Last Updated: May 12, 2026
- 1 minute read
- OpenAccess SDK
- Version 8.1
- Documentation
This statement ends your current transaction and makes permanent all changes performed in the transaction. A transaction is a sequence of SQL statements that the data source treats as a single unit. This statement also releases the transaction's locks.
Syntax
COMMIT
Example
INSERT INTO emp(empno, ename) values(10,'alpha')
COMMIT