Heim >Datenbank >MySQL-Tutorial >事务的隔离级别及mysql中相关的设置_MySQL

事务的隔离级别及mysql中相关的设置_MySQL

WBOY
WBOYOriginal
2016-06-01 13:31:011125Durchsuche

bitsCN.com

事务的隔离级别及mysql中相关的设置

 

进入mysql管理界面后,可执行如下sql

 

[sql] select @@tx_isolation;    //查看隔离级别  set transaction isolation level read uncommitted;  //设置读未提交级别  start transaction;  //打开事务  rollback;   //回滚  commit; //提交  set transaction isolation level read committed;  //设置读提交级别  set transaction isolation level repeatable read;  //设置可重复读(缺省),保证每次读的结果是一样的  set transaction isolation level serializable; //设置成序列化  (类似于oracle的锁)

 

 

下面是事务的隔离级别及事务的特性

事务的隔离级别及mysql中相关的设置_MySQL
事务的隔离级别及mysql中相关的设置_MySQL
事务的隔离级别及mysql中相关的设置_MySQL
事务的隔离级别及mysql中相关的设置_MySQL

bitsCN.com
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn