Add support for SQLite open flags

This commit is contained in:
BohwaZ 2017-09-04 11:02:12 +12:00 committed by Joe Watkins
parent fafd67cb71
commit ed2f6510da
No known key found for this signature in database
GPG key ID: F9BA0ADA31CBD89E
5 changed files with 54 additions and 1 deletions

View file

@ -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