tp 5.0 mysql 事物

來源:互聯網
上載者:User

標籤:pre   資料   rom   ESS   echo   variables   能力   磁碟   where   

mysql  預設 MyISAM儲存引擎,不支援事物處理,InnoDB儲存引擎提供了具有提交、復原和崩潰恢複能力的事務安全。但是對比Myisam的儲存引擎,InnoDB寫的處理效率差一些並且會佔用更多的磁碟空間以保留資料和索引

查看 當前資料庫的引擎
show variables like ‘%storage_engine%‘;

查看當前表使用的引擎
show table status from ceshi where name=‘user‘;


修改表引擎方法
alter table user engine=innodb;

 

public function index(){
$data[‘name‘] = ‘小豬‘;
$data[‘pwd‘] = ‘123456‘;

// 啟動事務
Db::startTrans();
try{
$res=Db::table(‘user‘)->insert($data);

// id 為 2 的資料不存在
$res2=Db::table(‘user‘)->where(‘id‘,2)->delete();
if($res && $res2){
echo ‘操作成功‘;
}else{
throw new \Exception("刪除id 2 資料沒有成功");
}

// 提交事務
Db::commit();
} catch (\Exception $e) {
// 復原事務
Db::rollback();
var_dump($e->getMessage());

}

tp 5.0 mysql 事物

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.