(PECL CUBRID >= 8.4.1)
cubrid_lob2_import — 从文件导入 BLOB/CLOB 数据
cubrid_lob2_import() 函数用于保存来自文件的 BLOB/CLOB 数据的内容。要使用此函数,您必须使用 cubrid_lob2_new() 或首先从 CUBRID 数据库中获取 lob 对象。如果文件已存在,则操作将失败。此函数不会影响 lob 对象的游标位置。它操作整个 lob 对象。
lob_identifier
作为 cubrid_lob2_new() 的结果或从结果集中获取的 Lob 标识符。
filename
要导入 BLOB/CLOB 数据的文件名。它还支持文件路径。
范例 #1 cubrid_lob2_export() 示例
<?php
$conn = cubrid_connect("localhost", 33000, "demodb", "dba", "");
cubrid_execute($conn,"DROP TABLE if exists test_lob");
cubrid_execute($conn,"CREATE TABLE test_lob (id INT, contents CLOB)");
$req = cubrid_prepare($conn, "INSERT INTO test_lob VALUES (?, ?)");
cubrid_bind($req, 1, 1);
$lob = cubrid_lob2_new($conn, "clob");
cubrid_lob2_import($lob, "doc_1.txt");
cubrid_lob2_bind($req, 2, $lob, 'CLOB'); // or cubrid_lob2_bind($req, 2, $lob);
cubrid_execute($req);
cubrid_lob2_close($lob);
cubrid_disconnect($conn);
?>