in reply to Re: Result set into array
in thread Result set into array
$sth = $dbconn->prepare($sql_statement); $sth->execute() or die "Can not execute: " . $sth->errstr; $sth->{RaiseError} = 1; my $hash = $sth->selectall_hashref($sql_statement); #this is line +166 $sth->finish; $dbconn->commit(); $dbconn->disconnect();
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Result set into array
by shenme (Priest) on Nov 19, 2006 at 02:05 UTC |