一个php处理oracle的 long型数据的简单例子
程序员文章站
2022-05-26 21:45:58
...
oracle|数据
$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中为大文本的具体内容。
上一篇: redis的sortedset用法
下一篇: PHP实现HTML生成PDF文件程序