gopalr has asked for the wisdom of the Perl Monks concerning the following question:
Hi
I am getting the following error while running fetchrow_hashref below:
$sql='SELECT a.serial_num user_serial FROM device a WHERE (LOWER(a.nam +e) = ? OR a.mgmt_ip_addr = ?)'; $cmd = $dbh->prepare($sql); $cmd->execute('test','test'); while ($row = $cmd->fetchrow_hashref()) { ..... }
NOTE:The column SERIAL_NUM has the type VARCHAR2(80) and it has many special characters
Please help me in this regardThanks,
Gopal R
Updated: could you please guide me anyone on my queries ?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: error: fetchrow_hashref failed: ORA-24345
by NetWallah (Canon) on Aug 28, 2013 at 15:13 UTC | |
by gopalr (Priest) on Aug 28, 2013 at 15:26 UTC |