How to implement the ACID model for a database?

前端 未结 3 1522
滥情空心
滥情空心 2021-02-04 21:29

How do Igo about achieving the ACID properties for my database - A- Atomicity, C- Consistency, I- Isolation, D- Durability. Database system being used - MySql.

3条回答
  •  被撕碎了的回忆
    2021-02-04 22:13

    If I understood you properly it is not your task. It is a task of MySql developers (Oracle). If database server support ACID you can use it by choose correct isolation level and use transactions (impicit or explicit).

提交回复
热议问题