Tagged with "atomicity"
Fun MySQL fact of the day: leveraging autocommit
By default, MySQL uses autocommit
for all new connections, and, as noted yesterday, autocommit
can be remarkably powerful when used carefully for two separate reasons: ... read more
Fun MySQL fact of the day: all-or-something?
Finally,A
. The A
in ACID
stands for Atomicity, which is the property that guarantees that a series of database operations performed in a transaction all occur or nothing occurs. You might be thinking, "if Atomicity is the first letter in ACID
, why did you save it ... read more