Home  >  Article  >  Database  >  mysql支持事务处理_MySQL

mysql支持事务处理_MySQL

WBOY
WBOYOriginal
2016-06-01 13:32:561162browse

bitsCN.com

mysql支持事务处理

 

MYSQL中只有INNODB和BDB类型的数据表才能支持事务处理,而一般MYSQL数据库默认的引擎是MyISAM,这种引擎不支持事务;

 

如果要让MYSQL支持事务,可以自己手动修改:方法如下:

 

1、到phpmyadmin中,运行show engines;查看InnoDB为YES,即表示数据库支持InnoDB了;也就说明支持事务transaction了。

 

2、在创建表时,就可以为Storage Engine选择InnoDB引擎了。

 

如果是以前创建的表,可以使用alter table 表名 type=InnoDB;或 mysql->alter table table_name engine=InnoDB;来改变数据表的引擎以支持事务。

bitsCN.com
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn