Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: DBD::Oracle::st fetchrow_hashref failed: ORA-24345

by runrig (Abbot)
on Sep 06, 2013 at 16:38 UTC ( [id://1052733]=note: print w/replies, xml ) Need Help??


in reply to DBD::Oracle::st fetchrow_hashref failed: ORA-24345

What version of DBD::Oracle? There seems to be an old patch for this issue here, and the latest version of the code seems to cover that issue (though the code is a bit different), so I'm wondering if you have a (very) old version.

And just curious if the following would fix the problem:

$sth->execute(...); my $serial_num = '0' x 50_000; # Or more? $sth->bind_col(1, \$serial_num); while ($sth->fetch()) { print "$serial_num\n"; }

Replies are listed 'Best First'.
Re^2: DBD::Oracle::st fetchrow_hashref failed: ORA-24345
by gopalr (Priest) on Sep 06, 2013 at 16:47 UTC

    The version is 1.15

      I would try the latest version, or first try the code I posted above (though I have no idea if either will work).

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1052733]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (4)
As of 2024-03-29 12:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found