mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
ported ext/sqlite3
This commit is contained in:
parent
094a78eb69
commit
acdda1093b
2 changed files with 59 additions and 57 deletions
|
@ -38,9 +38,9 @@
|
|||
|
||||
/* Structure for SQLite Statement Parameter. */
|
||||
struct php_sqlite3_bound_param {
|
||||
long param_number;
|
||||
php_int_t param_number;
|
||||
zend_string *name;
|
||||
long type;
|
||||
php_int_t type;
|
||||
zval parameter;
|
||||
};
|
||||
|
||||
|
@ -91,7 +91,7 @@ static inline php_sqlite3_db_object *php_sqlite3_db_from_obj(zend_object *obj) {
|
|||
/* Structure for SQLite Database object. */
|
||||
typedef struct _php_sqlite3_agg_context {
|
||||
zval zval_context;
|
||||
long row_count;
|
||||
php_int_t row_count;
|
||||
} php_sqlite3_agg_context;
|
||||
|
||||
typedef struct _php_sqlite3_stmt_object php_sqlite3_stmt;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue