cubrid_lob2_export

(PECL CUBRID >= 8.4.1)

cubrid_lob2_export将 lob 对象导出到文件

描述

cubrid_lob2_export(resource $lob_identifier, string $file_name): bool

cubrid_lob2_export() 函数用于将 BLOB/CLOB 数据的内容保存到文件。要使用此函数,您必须使用 cubrid_lob2_new() 或先从 CUBRID 数据库中获取一个 lob 对象。如果文件已存在,则操作将失败。此函数不会影响 lob 对象的游标位置。它操作整个 lob 对象。

参数

lob_identifier

作为 cubrid_lob2_new() 结果的 lob 标识符或从结果集中获取。

filename

要存储 BLOB/CLOB 数据的文件名。它还支持文件路径。

返回值

如果成功则返回 true,失败则返回 false

示例

示例 #1 cubrid_lob2_export() 示例

<?php
// 表格:test_lob (id INT, contents CLOB)

$conn = cubrid_connect("localhost", 33000, "demodb", "dba", "");

cubrid_execute($conn,"DROP TABLE if exists doc");
cubrid_execute($conn,"CREATE TABLE doc (id INT, doc_content CLOB)");
cubrid_execute($conn,"INSERT INTO doc VALUES (5,'hello,cubrid')");

$req = cubrid_prepare($conn, "select * from doc");

cubrid_execute($req);

cubrid_move_cursor($req, 1, CUBRID_CURSOR_FIRST);

$row = cubrid_fetch($req, CUBRID_NUM | CUBRID_LOB);

cubrid_lob2_export($row[1], "doc_3.txt");

cubrid_lob2_close($row[1]);
cubrid_disconnect($conn);
?>

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top