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 storageOpis
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, ....
  
Notatka: 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.
Parametry
- stmt
- Procedural style only: A statement identifier returned by mysqli_stmt_init(). 
- var1
- The variable to be bound. 
Przykłady
| Przykład 2. Procedural style 
 | 
Powyższy przykład wyświetli:
| AFG Afghanistan ALB Albania DZA Algeria ASM American Samoa AND Andorra | 
Patrz także
| mysqli_stmt_bind_param() | 
| mysqli_stmt_execute() | 
| mysqli_stmt_fetch() | 
| mysqli_prepare() | 
| mysqli_stmt_prepare() | 
| mysqli_stmt_init() | 
| mysqli_stmt_errno() | 
| mysqli_stmt_error() | 
| Poprzedni | Spis treści | Następny | 
| mysqli_stmt_bind_param | Początek rozdziału |