Help for this page

Select Code to Download


  1. or download this
    sub my_beta_from_alpha
    {
    ...
        my $result = $sth->fetchrow_arrayref;
        return @$result;
    }
    
  2. or download this
    sub my_beta_from_alpha
    {
    ...
        my $result = $class->construct($sth->fetchrow_hashref);
        return $result;
    }