Lines Matching defs:sqlite3_open_v2

578 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()]
662 ** [sqlite3_open_v2()], and not previously closed.
890 ** 3rd parameter to the [sqlite3_open_v2()] interface and
893 ** Only those flags marked as "Ok for sqlite3_open_v2()" may be
894 ** used as the third argument to the [sqlite3_open_v2()] interface.
895 ** The other flags have historically been ignored by sqlite3_open_v2(),
897 ** raised if any of the disallowed bits are passed into sqlite3_open_v2().
901 ** [sqlite3_open_v2()] does *not* cause the underlying database file
903 ** [sqlite3_open_v2()] has historically be a no-op and might become an
906 #define SQLITE_OPEN_READONLY 0x00000001 /* Ok for sqlite3_open_v2() */
907 #define SQLITE_OPEN_READWRITE 0x00000002 /* Ok for sqlite3_open_v2() */
908 #define SQLITE_OPEN_CREATE 0x00000004 /* Ok for sqlite3_open_v2() */
912 #define SQLITE_OPEN_URI 0x00000040 /* Ok for sqlite3_open_v2() */
913 #define SQLITE_OPEN_MEMORY 0x00000080 /* Ok for sqlite3_open_v2() */
921 #define SQLITE_OPEN_NOMUTEX 0x00008000 /* Ok for sqlite3_open_v2() */
922 #define SQLITE_OPEN_FULLMUTEX 0x00010000 /* Ok for sqlite3_open_v2() */
923 #define SQLITE_OPEN_SHAREDCACHE 0x00020000 /* Ok for sqlite3_open_v2() */
924 #define SQLITE_OPEN_PRIVATECACHE 0x00040000 /* Ok for sqlite3_open_v2() */
926 #define SQLITE_OPEN_NOFOLLOW 0x01000000 /* Ok for sqlite3_open_v2() */
1666 ** the flags argument to [sqlite3_open_v2()]. Or if [sqlite3_open()]
2331 ** enabled, all filenames passed to [sqlite3_open()], [sqlite3_open_v2()],
3780 ** sqlite3_open() and sqlite3_open_v2() and as UTF-16 in the native byte
3792 ** sqlite3_open() or sqlite3_open_v2(). ^The default encoding for databases
3799 ** The sqlite3_open_v2() interface works like sqlite3_open()
3802 ** sqlite3_open_v2() must include, at a minimum, one of the following
3870 ** the extended result code mode, this flag also causes [sqlite3_open_v2()]
3877 ** If the 3rd parameter to sqlite3_open_v2() is not one of the
3882 ** sqlite3_open_v2(), however that behavior might not be carried through
3885 ** for sqlite3_open_v2(). The SQLITE_OPEN_EXCLUSIVE does *not* cause
3888 ** by sqlite3_open_v2().
3890 ** ^The fourth parameter to sqlite3_open_v2() is the name of the
3912 ** set in the third argument to sqlite3_open_v2(), or if it has
3945 ** VFS is an error. ^If sqlite3_open_v2() is used and the vfs option is
3947 ** the value passed as the fourth parameter to sqlite3_open_v2().
3954 ** third argument to sqlite3_open_v2(). ^If the mode option is set to
3962 ** the flags passed in the third parameter to sqlite3_open_v2().
3967 ** sqlite3_open_v2(). ^Setting the cache parameter to "private" is
3969 ** ^If sqlite3_open_v2() is used and the "cache" parameter is present in
4041 ** of sqlite3_open() and sqlite3_open_v2() must be UTF-8, not whatever
4044 ** sqlite3_open() or sqlite3_open_v2().
4047 ** prior to calling sqlite3_open() or sqlite3_open_v2(). Otherwise, various
4060 SQLITE_API int sqlite3_open_v2(
4509 ** prior successful call to [sqlite3_open()], [sqlite3_open_v2()] or
6778 ** prior to calling [sqlite3_open] or [sqlite3_open_v2]. Otherwise, various
7224 ** calls to [sqlite3_open()], [sqlite3_open_v2()], and [sqlite3_open16()].
7236 ** individual database connections using the [sqlite3_open_v2()] interface
7242 ** [sqlite3_open_v2()] with [SQLITE_OPEN_SHAREDCACHE].
7546 ** or [sqlite3_open_v2()] call that provoked the xEntryPoint() will fail.
10752 ** [sqlite3_open_v2()] returns [SQLITE_CANTOPEN], this interface could be
70270 ** sqlite3_open(), sqlite3_open16(), or sqlite3_open_v2().
136011 #define sqlite3_open_v2 sqlite3_api->open_v2
136488 sqlite3_open_v2,
181113 ** user to API functions sqlite3_open() or sqlite3_open_v2(), and for database
181268 ** correspond to flags that may be passed to the sqlite3_open_v2()
181434 ** valid input flags for sqlite3_open_v2() are SQLITE_OPEN_READONLY,
181756 SQLITE_API int sqlite3_open_v2(
216015 ** the SQLITE_CONFIG_URI flag to sqlite3_open_v2(). So if either zTarget
218938 p->rc = sqlite3_open_v2(zName, &db, flags, bUseVfs ? p->zVfsName : 0);