Help for this page

Select Code to Download


  1. or download this
    package My::Table;
    use base 'My::Class::DBI';
    ...
        $sth->execute($quid);
        return @{$sth->fetchall_arrayref({})};
    }
    
  2. or download this
    # fetch a My::Table object
    my $record = My::Table->create({ foo => 1,
    ...
    
    # fetch a list of records via our join method
    my @list = My::Table->public_method_name('new quid val');