cubrid_lob2_bind
(PECL CUBRID >= 8.4.1)
cubrid_lob2_bind — Bind a lob object or a string as a lob object to a prepared statement as parameters
Description
$req_identifier
, int $bind_index
, mixed $bind_value
[, string $bind_value_type
] ) : bool
The cubrid_lob2_bind() function is used to bind BLOB/CLOB datas
to a corresponding question mark placeholder in the SQL statement that was passed
to cubrid_prepare(). If bind_value_type
is not given, string will be "BLOB" as the default. But if you use
cubrid_lob2_new() before, bind_value_type
will be consistent with type
in cubrid_lob2_new() as the default.
Parameters
-
req_identifier
-
Request identifier as a result of cubrid_prepare().
-
bind_index
-
Location of binding parameters. It starts with 1.
-
bind_value
-
Actual value for binding.
-
bind_value_type
-
It must be "BLOB" or "CLOB" and it won't be case-sensitive. If it not be given, the default value is "BLOB".
Examples
Example #1 cubrid_lob2_bind() example
<?php
// Table: 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);
?>
English translation
You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.
Thank you in advance.
Document created the 30/01/2003, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/php-rf-function.cubrid-lob2-bind.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.