in reply to dbi: selectrow_arrayref

you are using:
$dbh->selectrow_arrayref
instead of:
selectrow_arrayref($sth)
right? edit: corrected the calls(?) what I use in a program of mine:
$dbh->selectrow_hashref($sql);
hope this manages to give a hint in the right direction