From 7a17b231903ad7432e229c7b6fe025a22cbc62d2 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Fri, 2 May 2003 22:09:54 +0000 Subject: Add iterator interface and test --- ext/sqlite/php_sqlite.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'ext/sqlite/php_sqlite.h') 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 | | Tal Peer | + | Marcus Boerger | +----------------------------------------------------------------------+ $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); -- cgit v1.2.1