Hello,
I'm using a Oracle9 DB and i'm not able to save CLOB'S larger then 3000 characters.
Here is my code:
$sSQL = "insert into $table ($rij) values ($values) $returning";
$c1 = $this->connectie;
$stmt = ociparse($c1, $sSQL);
$clob1 = OCINewDescriptor($c1, OCI_D_LOB);
OCIBindByName ($stmt, "$clobNaam", &$clob1, -1, OCI_B_CLOB);
OCIExecute($stmt, OCI_DEFAULT);
$clob1->save($clob);
ocicommit($c1);
OCIFreeStatement($stmt);
Can someone post an example of a working method to insert large CLOB's? Or does someone know what i'm doing wrong.
TIA