The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

DBIx::Skinny::Transaction - transaction manager for DBIx::Skinny

SYNOPSIS

  sub do_work {
      my $txn = Your::Model->txn_scope; # start transaction

      my $row = Your::Model->single('user', {id => 1});
      $row->set({name => 'nekokak'});
      $row->update;

      $txn->commit; # commit
  }

SEE ALSO

Data::Model