diff options
author | Wez Furlong <wez@php.net> | 2003-04-20 13:08:22 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2003-04-20 13:08:22 +0000 |
commit | 4a468826484894fc56e0e475f3447e261e5a8692 (patch) | |
tree | b6b6ddb7e9d051fb92ec06d6231b22ae3b692c74 /ext/sqlite/php_sqlite.h | |
parent | 3f18d16957931c1ff31c0fc04d5ac0de7698d3d2 (diff) | |
download | php-git-4a468826484894fc56e0e475f3447e261e5a8692.tar.gz |
Implement sqlite_create_aggregate() which can be used to create aggregation
functions for use in SQL statements.
Diffstat (limited to 'ext/sqlite/php_sqlite.h')
-rw-r--r-- | ext/sqlite/php_sqlite.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/sqlite/php_sqlite.h b/ext/sqlite/php_sqlite.h index 3b0dac9e57..86fb3084d5 100644 --- a/ext/sqlite/php_sqlite.h +++ b/ext/sqlite/php_sqlite.h @@ -65,6 +65,8 @@ PHP_FUNCTION(sqlite_busy_timeout); PHP_FUNCTION(sqlite_last_error); PHP_FUNCTION(sqlite_error_string); +PHP_FUNCTION(sqlite_create_aggregate); + #ifdef ZTS #define SQLITE_G(v) TSRMG(sqlite_globals_id, zend_sqlite_globals *, v) #else |