mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
MFH Stop using sqlite3_aggregate_count() as this is now deprecated.
This commit is contained in:
parent
4b3197a9cd
commit
3fb7f05991
3 changed files with 27 additions and 14 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue