Backend Development
ACID properties of database transactions
Atomicity: operations in a transaction either all succeed or all fail. Consistency: The database always transitions from one consistent state to another consistent state. The integrity of the database is not broken before the transaction starts and after the transaction ends. This means that the material written must fully comply Read more…