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

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

WBOY
Release: 2016-06-21 09:09:26
Original
1226 people have browsed it

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



Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template