diff options
author | Marcus Boerger <helly@php.net> | 2003-10-17 08:01:49 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-10-17 08:01:49 +0000 |
commit | 4943cae9262953de09ca2bab25f3b12978d9a910 (patch) | |
tree | 923be9d29b2ac21bc609e6b4a0d07965e8e43cc3 /ext/sqlite/sqlite.c | |
parent | a2e95e4b91c45469548e1fca46bc663f48851f61 (diff) | |
download | php-git-4943cae9262953de09ca2bab25f3b12978d9a910.tar.gz |
pre/hasprev have nothing to do with iteration
Diffstat (limited to 'ext/sqlite/sqlite.c')
-rw-r--r-- | ext/sqlite/sqlite.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/sqlite/sqlite.c b/ext/sqlite/sqlite.c index e33c22c153..267952aaf0 100644 --- a/ext/sqlite/sqlite.c +++ b/ext/sqlite/sqlite.c @@ -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} |