diff options
author | BohwaZ <bohwaz@github.com> | 2017-09-04 11:02:12 +1200 |
---|---|---|
committer | Joe Watkins <krakjoe@php.net> | 2017-09-06 09:56:02 +0100 |
commit | ed2f6510da7c68b5690c60344cbb9fe73241592a (patch) | |
tree | c655116faa99c0e05f35c7167f493100f14c343a /ext/pdo_sqlite/php_pdo_sqlite_int.h | |
parent | fafd67cb71e2d47f7cae3a74d9371fe6cda55442 (diff) | |
download | php-git-ed2f6510da7c68b5690c60344cbb9fe73241592a.tar.gz |
Add support for SQLite open flags
Diffstat (limited to 'ext/pdo_sqlite/php_pdo_sqlite_int.h')
-rw-r--r-- | ext/pdo_sqlite/php_pdo_sqlite_int.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/pdo_sqlite/php_pdo_sqlite_int.h b/ext/pdo_sqlite/php_pdo_sqlite_int.h index a390d6497f..1c90416b9f 100644 --- a/ext/pdo_sqlite/php_pdo_sqlite_int.h +++ b/ext/pdo_sqlite/php_pdo_sqlite_int.h @@ -75,4 +75,9 @@ extern int _pdo_sqlite_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, const char *file, #define pdo_sqlite_error_stmt(s) _pdo_sqlite_error(stmt->dbh, stmt, __FILE__, __LINE__) extern struct pdo_stmt_methods sqlite_stmt_methods; + +enum { + PDO_SQLITE_ATTR_OPEN_FLAGS = PDO_ATTR_DRIVER_SPECIFIC, +}; + #endif |