in reply to Re^3: DBI and arrays
in thread DBI and arrays
(the database handle functions offer the do() and select*() shortcuts for doing similar things, although they are not as efficient in some cases)$sth = $dbh->prepare($sql); $sth->execute('TESTA1', 'TESTA2', 'TESTA3'); $aref = $sth->fetchall_arrayref({stuff => here});
|
|---|