diff options
author | Scott MacVicar <scottmac@php.net> | 2008-12-24 19:21:42 +0000 |
---|---|---|
committer | Scott MacVicar <scottmac@php.net> | 2008-12-24 19:21:42 +0000 |
commit | aaa89d7adbae430488293a91931b9bd0944af80d (patch) | |
tree | 6277b2fed4f88fcb24c89614670468f4dc4a7765 /ext/sqlite3/php_sqlite3_structs.h | |
parent | 0d860e26caba0c4ff0e3b145d44bac164d5428a6 (diff) | |
download | php-git-aaa89d7adbae430488293a91931b9bd0944af80d.tar.gz |
Stop using sqlite3_aggregate_count() as this is now deprecated.
Diffstat (limited to 'ext/sqlite3/php_sqlite3_structs.h')
-rw-r--r-- | ext/sqlite3/php_sqlite3_structs.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/sqlite3/php_sqlite3_structs.h b/ext/sqlite3/php_sqlite3_structs.h index c307c59ed5..c30f90dd8e 100644 --- a/ext/sqlite3/php_sqlite3_structs.h +++ b/ext/sqlite3/php_sqlite3_structs.h @@ -72,6 +72,12 @@ typedef struct _php_sqlite3_db_object { zend_llist free_list; } php_sqlite3_db_object; +/* Structure for SQLite Database object. */ +typedef struct _php_sqlite3_agg_context { + zval *zval_context; + long row_count; +} php_sqlite3_agg_context; + typedef struct _php_sqlite3_stmt_object php_sqlite3_stmt; typedef struct _php_sqlite3_result_object php_sqlite3_result; |