Manuál PHP | ||
---|---|---|
PÅ™edcházejÃcà | Dalšà |
mysqli_stmt_data_seek
(PHP 5)
mysqli_stmt_data_seek(no version information, might be only in CVS)
stmt->data_seek() -- Seeks to an arbitray row in statement result setPopis
Procedural style:
void mysqli_stmt_data_seek ( mysqli_stmt stmt, int offset )Object oriented style (method):
class mysqli_stmt {void data_seek ( int offset )
}
Seeks to an arbitrary result pointer in the statement result set.
Seznam parametrů
stmt
Procedural style only: A statement identifier returned by mysqli_stmt_init().
offset
Must be between zero and the total number of rows minus one (0.. mysqli_stmt_num_rows() - 1).
PÅ™Ãklady
PÅ™Ãklad 2. Procedural style
|
Výše uvedený pÅ™Ãklad vypÃÅ¡e:
City: Benin City Countrycode: NGA |
PÅ™edcházejÃcà | Domů | Dalšà |
mysqli_stmt_close | Nahoru |