cubrid_lob2_export
Почист и полокален преглед на PHP референцата, со задржана структура од PHP.net и подобра читливост за примери, секции и белешки.
cubrid_lob2_export
Референца за `function.cubrid-lob2-export.php` со подобрена типографија и навигација.
cubrid_lob2_export
(PECL CUBRID >= 8.4.1)
cubrid_lob2_export — Export the lob object to a file
= NULL
На cubrid_lob2_export() function is used to save the contents of BLOB/CLOB data to 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 store BLOB/CLOB data. It also supports the path of the file.
Вратени вредности
Патеката до PHP скриптата што треба да се провери. 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 објект или низа како lob објект на подготвена изјава како параметри
- cubrid_lob2_import() - Увоз на BLOB/CLOB податоци од датотека
- cubrid_lob2_bind() - Прочитај податоци од GLO инстанца и зачувај ги во датотека