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

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Chinese version
Chinese version, very easy to use

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

Atom editor mac version download
The most popular open source editor
