Rechercher dans le manuel MySQL
28. 7. 11. 4 mysql _stmt _bind _param ()
bool mysql_stmt_bind_param(MYSQL_STMT *stmt, MYSQL_BIND
*bind)
Description
mysql_stmt_bind_param()
is
used to bind input data for the parameter markers in the SQL
statement that was passed to
mysql_stmt_prepare()
. It uses
MYSQL_BIND
structures to supply the data.
bind
is the address of an array of
MYSQL_BIND
structures. The client library
expects the array to contain one element for each
?
parameter marker that is present in the
query.
Suppose that you prepare the following statement:
INSERT INTO mytbl VALUES(?,?,?)
When you bind the parameters, the array of
MYSQL_BIND
structures must contain three
elements, and can be declared like this:
MYSQL_BIND bind[3];
Section 28.7.9, “C API Prepared Statement Data Structures”,
describes the members of each MYSQL_BIND
element and how they should be set to provide input values.
The conversion is not supported. Possibly the
buffer_type
value is invalid or is not one of the supported types.Out of memory.
An unknown error occurred.
See the Example in Section 28.7.11.10, “mysql_stmt_execute()”.
Document created the 26/06/2006, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/mysql-rf-mysql-stmt-bind-param.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.