Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
when I check in the db only part of the text is$sql = "INSERT INTO my_table NAMES (clob_field) VALUES (?) "; $sth = $db->prepare($sql); ### err checking $sth->bind_param(1, $clob_val,{"ora_type", ORA_CLOB}); $sth->execute(); ### err checking $db->commit();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Insert and selecting CLOB's
by blakem (Monsignor) on Sep 13, 2001 at 11:05 UTC |