summaryrefslogtreecommitdiff
path: root/ext/pdo_sqlite/php_pdo_sqlite_int.h
diff options
context:
space:
mode:
authorBohwaZ <bohwaz@github.com>2017-09-04 11:02:12 +1200
committerJoe Watkins <krakjoe@php.net>2017-09-06 09:56:02 +0100
commited2f6510da7c68b5690c60344cbb9fe73241592a (patch)
treec655116faa99c0e05f35c7167f493100f14c343a /ext/pdo_sqlite/php_pdo_sqlite_int.h
parentfafd67cb71e2d47f7cae3a74d9371fe6cda55442 (diff)
downloadphp-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.h5
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