PHP处理Oracle的CLOB实例,oracleclob实例
本文实例简述了PHP处理Oracle的CLOB的方法。分享给大家供大家参考。具体方法如下:
1. 写入数据
在使用PDO的预处理方法时,如果使用bindParam()等而不指定字段的数据类型或使用execute(),PDO都会默认为string类型,并且限定一个默认长度
所以在存clob类型字段时必须使用bindParam()或bindValue()等,并指定字符串长度,例如:
复制代码 代码如下:
$pdo -> bindParam(':clobData', $clobData, PDO::PARAM_STR,strlen($clobData));
2. 读取数据
PDO取出的CLOB字段值在该字段不为空时是资源标识符,为空时为空字符串,取数据方法如下
复制代码 代码如下:
$arr = $pdo -> fetch();
is_resource($arr['clob']) && $arr['clob'] =stream_get_contents($arr['clob']);
希望本文所述对大家的PHP程序设计有所帮助。
哥们,我也遇到这样的问题啊,同求解,解决了说一声啊
写入数据
在使用PDO的预处理方法时,如果使用bindParam()等而不指定字段的数据类型或使用execute(),PDO都会默认为string类型,并且限定一个默认长度
所以在存clob类型字段时必须使用bindParam()或bindValue()等,并指定字符串长度,例如 $pdo -> bindParam(‘:clobData’, $clobData, PDO::PARAM_STR,strlen($clobData));
读取数据
PDO取出的CLOB字段值在该字段不为空时是资源标识符,为空时为空字符串,取数据方法如下
$arr = $pdo -> fetch();
is_resource($arr[‘clob’]) && $arr[‘clob’] =stream_get_contents($arr[‘clob’]);
希望能帮到你

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Atom editor mac version download
The most popular open source editor

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Dreamweaver CS6
Visual web development tools

SublimeText3 English version
Recommended: Win version, supports code prompts!
