| #define SQLITE_OPEN_CREATE 0x00000004 |
This flag indicates that the database should be created if it does not already exist. Usually use with SQLITE_OPEN_READWRITE.
The flags for sqlite3_open() are SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE.
1.5.7.1