PHP8 cubrid_lob2_export

2024-03-28 09:31 更新
(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() example

<?php
// Table: 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);
?>

参见 

  • cubrid_lob2_new() - 创建一个 lob 对象
  • cubrid_lob2_close() - 关闭 LOB 对象
  • cubrid_lob2_import() - 从文件导入 BLOB/CLOB 数据
  • cubrid_lob2_bind() - 将 lob 对象或字符串作为 lob 对象绑定到作为参数的预准备语句


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号