
- Python Basic Tutorial
- Python - Home
- Python - Overview
- Python - Environment Setup
- Python - Basic Syntax
- Python - Comments
- Python - Variables
- Python - Data Types
- Python - Operators
- Python - Decision Making
- Python - Loops
- Python - Numbers
- Python - Strings
- Python - Lists
- Python - Tuples
- Python - Dictionary
- Python - Date & Time
- Python - Functions
- Python - Modules
- Python - Files I/O
- Python - Exceptions
Commit & RollBack Operation in Python
COMMIT
Commit is the operation, which gives a green signal to database to finalize the changes, and after this operation, no change can be reverted back.
Here is a simple example to call commit method.
db.commit()
ROLLBACK
If you are not satisfied with one or more of the changes and you want to revert back those changes completely, then use rollback() method.
Here is a simple example to call rollback() method.
db.rollback()
- Related Articles
- COMMIT & Rollback Operations in Perl
- Difference Between COMMIT and ROLLBACK in SQL
- What is the rollback() method in Python MySQL?
- What is Python commit() method in MySQL?
- Database INSERT Operation in Python
- Database READ Operation in Python
- Database Update Operation in Python
- Database DELETE Operation in Python
- Tuple XOR operation in Python
- Python set operation.
- What is operation of <> in Python?
- Java Connection rollBack() method with example
- Atomic Commit Protocol in Distributed System
- How to tag a commit in git?
- Program to perform excel spreadsheet operation in Python?

Advertisements