Help for this page

Select Code to Download


  1. or download this
        my $arrayref =  $sth->fetchall_arrayref({
            FieldID     =>1,
    ...
            Fieldname4  =>1,
        });
        $template->param(table1 => $arrayref);
    
  2. or download this
        my $arrayref =  $sth->fetchall_arrayref({});
        $template->param(table1 => $arrayref);