- or download this
my $hash = $dbconn->selectall_hashref($sql_statement);
- or download this
my $sth = $dbconn->prepare($sql_statement);
. . . . . . .
my $hash = $dbconn->selectall_hashref($sth);
- or download this
{
local $dbconn->{RaiseError} = 1;
my $hash = $dbconn->selectall_hashref($sql_statement);
. . . . . . .
}