哈希空间 Ctrl + F 进行搜索
首页 php手册中文版 CSS中文手册 哈希文档 Markdown在线工具

PHP cubrid 组件

cubrid_lob2_import

(PECL CUBRID >= 8.4.1)

cubrid_lob2_importImport BLOB/CLOB data from a file

说明

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

The cubrid_lob2_import() function is used to save the contents of BLOB/CLOB data from a file. To use this function, you must use cubrid_lob2_new() or fetch a lob object from CUBRID database first. If the file already exists, the operation will fail. This function will not influence the cursor position of the lob object. It operates the entire lob object.

参数

lob_identifier

Lob identifier as a result of cubrid_lob2_new() or get from the result set.

filename

File name you want to import BLOB/CLOB data. It also supports the path of the file.

返回值

成功时返回 true, 或者在失败时返回 false

范例

示例 #1 cubrid_lob2_export() example

<?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($req11);

$lob cubrid_lob2_new($conn"clob");
cubrid_lob2_import($lob"doc_1.txt");
cubrid_lob2_bind($req2$lob'CLOB'); // or cubrid_lob2_bind($req, 2, $lob);

cubrid_execute($req);

cubrid_lob2_close($lob);
cubrid_disconnect($conn);
?>

参见

打开 哈希空间 微信小程序中查看更佳