(no version information, might be only in CVS)
PDOStatement::bindParam -- Binds a parameter to a the specified variable nameFigyelem |
Ez a függvény KÍSÉRLETI JELLEGGEL MŰKÖDIK. A függvény működése, neve, bármi amit a függévénnyel kapcsolatban dokumentáltunk megváltozhat egy későbbi PHP kiadásban minden figyelmeztetés nélkül. Ezt a függvényt csak a saját felelősségedre használd! |
Binds an SQL statement parameter to the specified variable name. The SQL statement parameter can either be a named placeholder or a question mark placeholder.
Output parameters will set the value of the bound PHP variable to the value returned by the database when the SQL statement is executed. This enables you to call stored procedures with output or input/output parameters, for example, for databases that support such features.
For input-only variables, you can pass an array of input values to PDOStatement::execute() instead.
Példa 2. Execute a prepared statement with question mark placeholders
|