laravel db transaction code example
Example 1: laravel db transaction
DB::beginTransaction();
try {
DB::insert(...);
DB::insert(...);
DB::insert(...);
DB::commit();
} catch (\Exception $e) {
DB::rollback();
}
Example 2: DB::transaction
use Illuminate\Support\Facades\DB;
DB::transaction(function () {
DB::update('update users set votes = 1');
DB::delete('delete from posts');
});
Example 3: transaction commit rollback in laravel
try {
$exception = DB::transaction(function() {
});
if(is_null($exception)) {
return true;
} else {
throw new Exception;
}
}
catch(Exception $e) {
return false;
}
Example 4: TRANSACTON LARAVEL QUERY BUILDER
DB::beginTransaction();
try {
DB::insert(...);
DB::commit();
} catch (\Throwable $e) {
DB::rollback();
throw $e;
}
Example 5: transaction laravel
DB::beginTransaction();
try { DB::commit(); }
catch (\Exception $e) { DB::rollback(); }
Example 6: laravel transaction query not working when multiple db connection
Start the transaction on the same connection your query will run on.