Help for this page

Select Code to Download


  1. or download this
    $sth = $dbh->prepare(qq{select * from `table`});
    $sth->execute();
    my $_somevar = $sth->fetchrow_hashref();
    $sth->finish();
    
  2. or download this
    $sth = $dbh->prepare(qq{select * from `table`});
    $sth->execute();
    ...
    # and data from table1 in $_thisvar
    }
    $sth->finish();