Help for this page

Select Code to Download


  1. or download this
    our $T = $object;
    transaction {...}
    
  2. or download this
    transaction [$dbh1, $dbh2] => code{...};
    # or
    transaction ($dbh1, $dbh2) => code{...};
    
  3. or download this
    package Transactions;
    use strict;
    ...
    sub code (&) {return $_[0]}
    
    1;