mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
parent
d8b312845c
commit
dc27324dd9
3 changed files with 173 additions and 0 deletions
|
@ -46,10 +46,19 @@ struct pdo_sqlite_func {
|
|||
struct pdo_sqlite_fci afunc, astep, afini;
|
||||
};
|
||||
|
||||
struct pdo_sqlite_collation {
|
||||
struct pdo_sqlite_collation *next;
|
||||
|
||||
const char *name;
|
||||
zval *callback;
|
||||
struct pdo_sqlite_fci fc;
|
||||
};
|
||||
|
||||
typedef struct {
|
||||
sqlite3 *db;
|
||||
pdo_sqlite_error_info einfo;
|
||||
struct pdo_sqlite_func *funcs;
|
||||
struct pdo_sqlite_collation *collations;
|
||||
} pdo_sqlite_db_handle;
|
||||
|
||||
typedef struct {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue