Lines Matching refs:sqlite3_open_v2

221 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()]
304 ** [sqlite3_open_v2()], and not previously closed.
505 ** 3rd parameter to the [sqlite3_open_v2()] interface and
508 #define SQLITE_OPEN_READONLY 0x00000001 /* Ok for sqlite3_open_v2() */
509 #define SQLITE_OPEN_READWRITE 0x00000002 /* Ok for sqlite3_open_v2() */
510 #define SQLITE_OPEN_CREATE 0x00000004 /* Ok for sqlite3_open_v2() */
514 #define SQLITE_OPEN_URI 0x00000040 /* Ok for sqlite3_open_v2() */
515 #define SQLITE_OPEN_MEMORY 0x00000080 /* Ok for sqlite3_open_v2() */
523 #define SQLITE_OPEN_NOMUTEX 0x00008000 /* Ok for sqlite3_open_v2() */
524 #define SQLITE_OPEN_FULLMUTEX 0x00010000 /* Ok for sqlite3_open_v2() */
525 #define SQLITE_OPEN_SHAREDCACHE 0x00020000 /* Ok for sqlite3_open_v2() */
526 #define SQLITE_OPEN_PRIVATECACHE 0x00040000 /* Ok for sqlite3_open_v2() */
1038 ** the flags argument to [sqlite3_open_v2()]. Or if [sqlite3_open()]
1661 ** passed to [sqlite3_open()], [sqlite3_open_v2()], [sqlite3_open16()] or
2639 ** sqlite3_open() and sqlite3_open_v2() and as UTF-16 in the native byte
2651 ** sqlite3_open() or sqlite3_open_v2() is called and
2658 ** The sqlite3_open_v2() interface works like sqlite3_open()
2661 ** sqlite3_open_v2() can take one of
2682 ** If the 3rd parameter to sqlite3_open_v2() is not one of the
2699 ** ^The fourth parameter to sqlite3_open_v2() is the name of the
2721 ** set in the fourth argument to sqlite3_open_v2(), or if it has
2753 ** VFS is an error. ^If sqlite3_open_v2() is used and the vfs option is
2755 ** the value passed as the fourth parameter to sqlite3_open_v2().
2762 ** third argument to sqlite3_open_v2(). ^If the mode option is set to
2770 ** the flags passed in the third parameter to sqlite3_open_v2().
2775 ** sqlite3_open_v2(). ^Setting the cache parameter to "private" is
2777 ** ^If sqlite3_open_v2() is used and the "cache" parameter is present in
2850 ** of sqlite3_open() and sqlite3_open_v2() must be UTF-8, not whatever
2853 ** sqlite3_open() or sqlite3_open_v2().
2856 ** prior to calling sqlite3_open() or sqlite3_open_v2(). Otherwise, various
2869 SQLITE_API int sqlite3_open_v2(
3103 ** prior successful call to [sqlite3_open()], [sqlite3_open_v2()] or
4728 ** prior to calling [sqlite3_open] or [sqlite3_open_v2]. Otherwise, various
4972 ** calls to [sqlite3_open()], [sqlite3_open_v2()], and [sqlite3_open16()].
5240 ** or [sqlite3_open_v2()] call that provoked the xEntryPoint() will fail.