Help for this page

Select Code to Download


  1. or download this
    my $sql = q{
    SELECT
          b.shpritz
    ...
            a.bloop = ?
        AND a.glank = ?
    };
    
  2. or download this
    My::DBI::beta->set_sql(by_alpha => $sql);
  3. or download this
    my $skreek = My::DBI::beta->MAGIC_by_alpha(bloop => 1, glank => 2);
  4. or download this
    my $glink = (My::DBI::beta->search_by_alpha( ... ))[0];
  5. or download this
    my $foomp = My::DBI::beta->search_by_alpha( ... )->next;
  6. or download this
    sub my_beta_from_alpha
    {
        my ($class, %args) = @_;
    ...
        my $result = $sth->fetchrow_arrayref;
        return @$result;
    }