mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Refactor pdo_sqlite (only compilable)
This commit is contained in:
parent
bd9f575517
commit
a30442c1c8
5 changed files with 97 additions and 115 deletions
|
@ -38,7 +38,7 @@ struct pdo_sqlite_fci {
|
|||
struct pdo_sqlite_func {
|
||||
struct pdo_sqlite_func *next;
|
||||
|
||||
zval *func, *step, *fini;
|
||||
zval func, step, fini;
|
||||
int argc;
|
||||
const char *funcname;
|
||||
|
||||
|
@ -50,7 +50,7 @@ struct pdo_sqlite_collation {
|
|||
struct pdo_sqlite_collation *next;
|
||||
|
||||
const char *name;
|
||||
zval *callback;
|
||||
zval callback;
|
||||
struct pdo_sqlite_fci fc;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue