From 8ed14ff16f81dde37804e399aae523c3b1e8f4bd Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Fri, 18 Apr 2003 12:22:43 +0000 Subject: Implement sqlite_unbuffered_query(), which works similarly to the mysql function with a similar name. Change sqlite_query() to use the same mechanism as the unbuffered query; this moves the bulk of the memory allocations into the ZE memory manager, and will hopefully be more efficient and less at risk of leaks. --- ext/sqlite/php_sqlite.h | 1 + 1 file changed, 1 insertion(+) (limited to 'ext/sqlite/php_sqlite.h') diff --git a/ext/sqlite/php_sqlite.h b/ext/sqlite/php_sqlite.h index fd4b723c80..87a33228c6 100644 --- a/ext/sqlite/php_sqlite.h +++ b/ext/sqlite/php_sqlite.h @@ -43,6 +43,7 @@ PHP_MINFO_FUNCTION(sqlite); PHP_FUNCTION(sqlite_open); PHP_FUNCTION(sqlite_close); PHP_FUNCTION(sqlite_query); +PHP_FUNCTION(sqlite_unbuffered_query); PHP_FUNCTION(sqlite_fetch_array); PHP_FUNCTION(sqlite_num_rows); -- cgit v1.2.1