Home  >  Article  >  php教程  >  一个php处理oracle的 long型数据的简单例子

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

WBOY
WBOYOriginal
2016-06-21 09:09:261182browse

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中为大文本的具体内容。



Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn