Help for this page

Select Code to Download


  1. or download this
    package Foo;
    
    ...
    sub dbh {
        $_[0]->{dbh};
    }
    
  2. or download this
    package Foo::mysql;
    
    ...
        my $self = shift;
        $self->dbh->func('last_insert_rowid');
    }