TP 5.0 MySQL Things

Source: Internet
Author: User

The MySQL default MyISAM storage engine, does not support thing handling, and the InnoDB storage Engine provides transactional security with commit, rollback, and crash resiliency. But compared to the MyISAM storage engine, InnoDB writes are less efficient and consume more disk space to preserve data and indexes

View the engine for the current database
Show variables like '%storage_engine% ';

View the engine used by the current table
Show table status from Ceshi where name= 'user';


Modifying the table engine method
ALTER TABLE user Engine=innodb;

Public Function index () {
$data [' name '] = ' piglet ';
$data [' pwd '] = ' 123456 ';

Start a transaction
Db::starttrans ();
try{
$res =db::table (' user ')->insert ($data);

Data with ID 2 does not exist
$res 2=db::table (' user ')->where (' id ', 2)->delete ();
if ($res && $res 2) {
Echo ' Operation succeeded ';
}else{
throw new \exception ("Delete ID 2 data not successful");
}

Commit a transaction
Db::commit ();
} catch (\exception $e) {
Rolling back a transaction
Db::rollback ();
Var_dump ($e->getmessage ());

}

TP 5.0 MySQL Things

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.