Manuál PHP | ||
---|---|---|
PÅ™edcházejÃcà | DalÅ¡Ã |
maxdb_stmt_data_seek
(PECL)
maxdb_stmt_data_seek(no version information, might be only in CVS)
stmt->data_seek -- Seeks to an arbitray row in statement result setDescription
Procedural style:
bool maxdb_stmt_data_seek ( resource statement, int offset )Object oriented style (method):
class stmt {bool data_seek ( int offset )
}
The maxdb_stmt_data_seek() function seeks to an arbitrary result pointer
specified by the offset
in the statement result set represented by
statement
. The offset
parameter must be between
zero and the total number of rows minus one (0..maxdb_stmt_num_rows() - 1).
Example
PÅ™Ãklad 2. Procedural style
|
The above examples would produce the following output:
City: Dallas Zip: 75243 |
PÅ™edcházejÃcà | Domů | DalÅ¡Ã |
maxdb_stmt_close | Nahoru |