joea Posted June 6, 2013 Share Posted June 6, 2013 Here is my code: $qry = "beginĀ :x := zmm_functions.update_message_by_id('$message_id','$sec_id', '$variables', '$name', '$xbody', '$changed_by', '$status', '$xbody2'); end;"; $ObStmt = oci_parse($this->dbCon, $qry); oci_bind_by_name($ObStmt, ":x", $returnData, 3200); $outcome = oci_execute($ObStmt); update_message_by_id is Oracle function that simply takes whatever is passed and updates Oracle table where $xbody and $xbody2 are CLOB fields. This code above works great up to 32K in $xbody and/or $xbody2. Any ideas? Link to comment https://forums.phpfreaks.com/topic/278857-php-oracle-clob-32k-limit-problem/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.