summaryrefslogtreecommitdiff
path: root/ext/sqlite/php_sqlite.h
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2003-05-02 22:09:54 +0000
committerMarcus Boerger <helly@php.net>2003-05-02 22:09:54 +0000
commit7a17b231903ad7432e229c7b6fe025a22cbc62d2 (patch)
treeb9d99a405d8321c43637a56775cb57b1bbe460a4 /ext/sqlite/php_sqlite.h
parent4701aaaa87c683867e99bfa72f4bcbac9c0a46ae (diff)
downloadphp-git-7a17b231903ad7432e229c7b6fe025a22cbc62d2.tar.gz
Add iterator interface and test
Diffstat (limited to 'ext/sqlite/php_sqlite.h')
-rw-r--r--ext/sqlite/php_sqlite.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/sqlite/php_sqlite.h b/ext/sqlite/php_sqlite.h
index d1f4a4ee2c..519dade0c0 100644
--- a/ext/sqlite/php_sqlite.h
+++ b/ext/sqlite/php_sqlite.h
@@ -14,6 +14,7 @@
+----------------------------------------------------------------------+
| Authors: Wez Furlong <wez@thebrainroom.com> |
| Tal Peer <tal@php.net> |
+ | Marcus Boerger <helly@php.net> |
+----------------------------------------------------------------------+
$Id$
@@ -47,11 +48,15 @@ PHP_FUNCTION(sqlite_close);
PHP_FUNCTION(sqlite_query);
PHP_FUNCTION(sqlite_unbuffered_query);
PHP_FUNCTION(sqlite_fetch_array);
+PHP_FUNCTION(sqlite_current);
PHP_FUNCTION(sqlite_num_rows);
PHP_FUNCTION(sqlite_num_fields);
PHP_FUNCTION(sqlite_field_name);
PHP_FUNCTION(sqlite_seek);
+PHP_FUNCTION(sqlite_rewind);
+PHP_FUNCTION(sqlite_next);
+PHP_FUNCTION(sqlite_has_more);
PHP_FUNCTION(sqlite_libversion);
PHP_FUNCTION(sqlite_libencoding);