ACID

set of properties of database transactions intended to guarantee validity even in the event of errors, power failures, etc.
Revision as of 17:37, 3 February 2012 by CarsracBot (talk | changes) (r2.7.2) (Robot: Adding el:ACID, uk:ACID)

ACID is a concept used with Databases. It is an abbreviation. It stands for

  • Atomicity - something is either done, or not. The state of doing it is not visible outside the database.
  • Consistency - The database is in a legal state at all times. When a transaction occurs, it can not break the rules. These rules are about integrity, what is allowed and what is not allowed in certain locations of the database.
  • Isolation - There can be more than one transaction occurring at the same time. A certain transaction will not see changes made by other transactions.
  • Durability - When a transaction is done, it will be committed. After it is committed, it can no longer be undone.