Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
The code works but it's only updating the first 79 characters... it cuts everything off after that. Thanks for your help.my $sql = "update list set clist=? where name='$TABLE_NAME'"; my $sth = $dbh->prepare( $sql ); $sth->bind_param(1, $xlist, { ora_type => ORA_CLOB }); $sth->execute($xlist);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Updating a CLOB using DBI
by davidrw (Prior) on Nov 22, 2005 at 04:40 UTC | |
by ChemBoy (Priest) on Nov 22, 2005 at 20:28 UTC | |
by Anonymous Monk on Nov 22, 2005 at 06:25 UTC |