首页 > 数据库 > Oracle > 正文

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

2024-08-29 13:32:32
字体:
来源:转载
供稿:网友
$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中为大文本的具体内容。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表