日期:2011-06-01  浏览次数:20476 次


$sqlA="update table_name set content=:CONTENT where newsid='$NewsID'";
$conn = OCILogon("scott", "tiger");
$conn = OCIParse($conn,$sqlA);

OCIBindByName($conn, ':CONTENT', &$ContentTmp,-1);
OCIExecute($conn);
其中:$ContentTmp中为大文本的具体内容。