pre/hasprev have nothing to do with iteration

This commit is contained in:
Marcus Boerger 2003-10-17 08:01:49 +00:00
parent a2e95e4b91
commit 4943cae926

View File

@ -225,12 +225,12 @@ function_entry sqlite_funcs_query[] = {
/* spl_forward */
PHP_ME_MAPPING(current, sqlite_current, NULL)
PHP_ME_MAPPING(next, sqlite_next, NULL)
PHP_ME_MAPPING(prev, sqlite_prev, NULL)
PHP_ME_MAPPING(hasmore, sqlite_has_more, NULL)
PHP_ME_MAPPING(hasprev, sqlite_has_prev, NULL)
/* spl_sequence */
PHP_ME_MAPPING(rewind, sqlite_rewind, NULL)
/* additional */
PHP_ME_MAPPING(prev, sqlite_prev, NULL)
PHP_ME_MAPPING(hasprev, sqlite_has_prev, NULL)
PHP_ME_MAPPING(num_rows, sqlite_num_rows, NULL)
PHP_ME_MAPPING(seek, sqlite_seek, NULL)
{NULL, NULL, NULL}