in reply to Re^2: Undertanding fetchall_arrayref Help!
in thread Undertanding fetchall_arrayref Help!
or better yetmy $sth_b = $dbh_b->prepare($sql_b, { RaiseError => 1 }); $sth_b->execute();
my $dbh_b = DBI->connect(..., { RaiseError => 1 }); my $sth_b = $dbh_b->prepare($sql_b); $sth_b->execute();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Undertanding fetchall_arrayref Help!
by Anonymous Monk on Apr 24, 2009 at 20:16 UTC | |
by ikegami (Patriarch) on Apr 24, 2009 at 20:21 UTC |