Manuál PHP | ||
---|---|---|
PÅ™edcházejÃcà | DalÅ¡Ã |
mysqli_stmt_bind_result
(PHP 5)
mysqli_stmt_bind_result(no version information, might be only in CVS)
stmt->bind_result() -- Binds variables to a prepared statement for result storagePopis
Procedural style:
bool mysqli_stmt_bind_result ( mysqli_stmt stmt, mixed &var1 [, mixed &...] )Object oriented style (method):
class mysqli_stmt {bool bind_result ( mixed &var1 [, mixed &...] )
}
Binds columns in the result set to variables.
When mysqli_stmt_fetch() is called to fetch data, the
MySQL client/server protocol places the data for the bound columns into
the specified variables var1, ...
.
Poznámka: Note that all columns must be bound after mysqli_stmt_execute() and prior to calling mysqli_stmt_fetch(). Depending on column types bound variables can silently change to the corresponding PHP type.
A column can be bound or rebound at any time, even after a result set has been partially retrieved. The new binding takes effect the next time mysqli_stmt_fetch() is called.
Seznam parametrů
stmt
Procedural style only: A statement identifier returned by mysqli_stmt_init().
var1
The variable to be bound.
PÅ™Ãklady
PÅ™Ãklad 2. Procedural style
|
Výše uvedený pÅ™Ãklad vypÃÅ¡e:
AFG Afghanistan ALB Albania DZA Algeria ASM American Samoa AND Andorra |
Viz také
mysqli_stmt_bind_param() |
mysqli_stmt_execute() |
mysqli_stmt_fetch() |
mysqli_prepare() |
mysqli_stmt_prepare() |
mysqli_stmt_init() |
mysqli_stmt_errno() |
mysqli_stmt_error() |
PÅ™edcházejÃcà | Domů | DalÅ¡Ã |
mysqli_stmt_bind_param | Nahoru |