Hello, 

I am using the following code to update a BLOB field into 
our Oracle database: 

$sql = "UPDATE CMSDOCUMENT SET CONTENT=? WHERE CMSDOCUMENTID=$cmsid";
$sth = $oradbh->prepare($sql);
$sth->bind_param(1, $html, {ora_type => ORA_BLOB});
$sth->execute() or die "update of topic content failed.\n";

This code works for small size saves.  However, when value 
of $html  gets large, the code just hungs.  

I'd appreciate any ideas.
Thank you,
Chris Lambrek.

Reply via email to