laravel mysql事务无效,Laravel DB :: rollback()在事务处理中不起作用
First off my engine is innoDB and I already tried the following on mySQL:BEGIN;INSERT INTO `tbl_users`(...) VALUES (...)ROLLBACK();And it works fine, meaning the problem wasn't in my mysql config.But ...