Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
bool sasql_stmt_send_long_data( sasql_stmt $stmt, int $param_number, string $data )
允许用户发送块中的参数数据。用户在尝试发送任何数据之前,必须先调用 sasql_stmt_bind_param 或 sasql_stmt_bind_param_ex。绑定参数必须属于字符串或 blob 类型。重复调用此函数将会附加至先前发送的内容。
$stmt 使用 sasql_prepare 准备的语句资源。
$param_number 参数编号。它必须是 0 和 (sasql_stmt_param_count($stmt) - 1) 之间的一个数字。
$data 要发送的数据。
TRUE(成功时)或 FALSE(失败时)。