一个php处理oracle的 long型数据的简单例子

发表于:2007-07-01来源:作者:点击数: 标签:
$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中为大文本的具体内容。

原文转自:http://www.ltesting.net