“DB :: Transakcja” Kod odpowiedzi

DB :: Transakcja

DB::beginTransaction();

try {
    DB::insert(...);
    DB::insert(...);
    DB::insert(...);

    DB::commit();
    // all good
} catch (\Exception $e) {
    DB::rollback();
    // something went wrong
}
Disgusted Dragonfly

DB :: Transakcja

use Illuminate\Support\Facades\DB;

DB::transaction(function () {
    DB::update('update users set votes = 1');

    DB::delete('delete from posts');
});
Terrible Teira

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu