cubrid_lob2_write

(PECL CUBRID >= 8.4.1)

cubrid_lob2_write — lob 객체에 쓰기


설명

cubrid_lob2_write(resource $lob_identifier, string $buf): bool

cubrid_lob2_write() 함수는 buf에서 데이터를 읽어온 만큼 LOB 객체에 저장한다. 이 함수는 이제 문자만 추가할 수 있습니다.


매개변수

lob_identifier
cubrid_lob2_new()의 결과인 Lob 식별자 또는 결과 집합에서 가져옵니다.
buf
lob 개체에 써야 하는 데이터입니다.

반환 값

성공하면 true를, 실패하면 false를 반환합니다.


Examples

예제 #1 cubrid_lob2_write() 예제 1

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

$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(2, ?)");

$lob = cubrid_lob2_new($conn, 'CLOB');
$len = cubrid_lob2_write($lob, "Hello world");

cubrid_lob2_bind($req, 1, $lob);
cubrid_execute($req);

cubrid_disconnect($conn);
?>
                  
                

예제 #2 cubrid_lob2_write() 예제 2

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

$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(1, ?)");
$lob1 = cubrid_lob2_new($conn, 'CLOB');
$len = cubrid_lob2_write($lob1, "cubrid php driver");
cubrid_lob2_bind($req, 1, $lob1);
cubrid_execute($req);

$req = cubrid_execute($conn, "select * from test_lob");

$row = cubrid_fetch_row($req, CUBRID_LOB);
$lob2 = $row[1];
cubrid_lob2_seek($lob2, 0, CUBRID_CURSOR_LAST);

$pos = cubrid_lob2_tell($lob2);
print "pos before write: $pos\n";

cubrid_lob2_write($lob2, "Hello world");

$pos = cubrid_lob2_tell($lob2);
print "pos after write: $pos\n";

cubrid_disconnect($conn);
?>
                  
                

기타