DB::unprepared( 'LOCK TABLES tmp_1 WRITE, tmp_2 WRITE;' );
// something want to do
DB::unprepared( 'UNLOCK TABLES' );
DB::statement()
や DB::raw()
では動きませんでした。
トランザクション化のケース。
DB::transaction(function (){
DB::unprepared( 'LOCK TABLES tmp_1 WRITE, tmp_2 WRITE;' );
// something want to do
DB::unprepared( 'UNLOCK TABLES' );
});
参考