函数名:cubrid_lob2_tell64()
适用版本:CUBRID >= 9.1.0
用法:cubrid_lob2_tell64() 函数用于获取 BLOB 或 CLOB 对象当前的位置。
语法:int cubrid_lob2_tell64 ( resource $lob_identifier )
参数:
- $lob_identifier: BLOB 或 CLOB 对象的标识符,通过 cubrid_lob2_new() 或 cubrid_lob2_subtract() 函数获取。
返回值: 成功时返回当前位置(以字节为单位)的整数值。失败时返回 false。
示例:
// 创建连接
$conn = cubrid_connect('localhost', 33000, 'demodb', 'dba', '');
// 插入一条数据到表中
$sql = 'INSERT INTO my_table (data) VALUES (?);';
$stmt = cubrid_prepare($conn, $sql);
$clob = cubrid_lob2_new($conn);
cubrid_lob2_bind($stmt, 1, $clob, 'CLOB');
$content = 'This is some sample content.';
cubrid_lob2_write($clob, $content);
cubrid_execute($stmt);
// 获取插入数据的位置
$lobSize = cubrid_lob2_size64($clob);
$currentPosition = cubrid_lob2_tell64($clob);
echo 'Lob size: ' . $lobSize . ' bytes' . PHP_EOL;
echo 'Current position: ' . $currentPosition . ' bytes' . PHP_EOL;
// 关闭连接并释放资源
cubrid_lob2_close($clob);
cubrid_disconnect($conn);
上述示例中,我们首先连接到数据库,然后插入一条包含 CLOB 数据的记录。之后,我们使用 cubrid_lob2_tell64()
函数获取插入数据的位置(以字节为单位)。最后,我们关闭连接并释放资源。
请注意,在使用该函数之前,必须通过 cubrid_lob2_new()
或 cubrid_lob2_subtract()
函数获取 CLOB 或 BLOB 对象的标识符。