MFH Stop using sqlite3_aggregate_count() as this is now deprecated.

This commit is contained in:
Scott MacVicar 2008-12-24 19:22:16 +00:00
parent 4b3197a9cd
commit 3fb7f05991
3 changed files with 27 additions and 14 deletions

View file

@ -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;