(PECL CUBRID >= 8.4.1)
cubrid_lob2_bind — 将 lob 对象或字符串作为 lob 对象绑定到准备好的语句作为参数
$req_identifier
,$bind_index
,$bind_value
,$bind_value_type
= ?cubrid_lob2_bind() 函数用于将 BLOB/CLOB 数据绑定到传递给 cubrid_prepare() 的 SQL 语句中相应的问号占位符。如果未给出 bind_value_type
,则字符串将默认为 "BLOB"。但是,如果您之前使用了 cubrid_lob2_new(),则 bind_value_type
将默认为 cubrid_lob2_new() 中的 type
。
req_identifier
作为 cubrid_prepare() 结果的请求标识符。
bind_index
绑定参数的位置。从 1 开始。
bind_value
用于绑定的实际值。
bind_value_type
它必须是 "BLOB" 或 "CLOB",并且不区分大小写。如果未给出,默认值为 "BLOB"。
示例 #1 cubrid_lob2_bind() 示例
<?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 (?, ?)");
cubrid_bind($req,1, 3);
$lob = cubrid_lob2_new($conn, 'CLOB');
cubrid_lob2_bind($req, 2, $lob);
cubrid_execute($req);
cubrid_bind($req, 1, 4);
cubrid_lob2_bind($req, 2, 'CUBRID LOB2 TEST', 'CLOB');
cubrid_execute($req);
cubrid_disconnect($conn);
?>