Home | History | Annotate | Download | only in orig

Lines Matching defs:sqlite3_open_v2

1263 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()]
1351 ** [sqlite3_open_v2()], and not previously closed.
1565 ** 3rd parameter to the [sqlite3_open_v2()] interface and
1568 #define SQLITE_OPEN_READONLY 0x00000001 /* Ok for sqlite3_open_v2() */
1569 #define SQLITE_OPEN_READWRITE 0x00000002 /* Ok for sqlite3_open_v2() */
1570 #define SQLITE_OPEN_CREATE 0x00000004 /* Ok for sqlite3_open_v2() */
1574 #define SQLITE_OPEN_URI 0x00000040 /* Ok for sqlite3_open_v2() */
1575 #define SQLITE_OPEN_MEMORY 0x00000080 /* Ok for sqlite3_open_v2() */
1583 #define SQLITE_OPEN_NOMUTEX 0x00008000 /* Ok for sqlite3_open_v2() */
1584 #define SQLITE_OPEN_FULLMUTEX 0x00010000 /* Ok for sqlite3_open_v2() */
1585 #define SQLITE_OPEN_SHAREDCACHE 0x00020000 /* Ok for sqlite3_open_v2() */
1586 #define SQLITE_OPEN_PRIVATECACHE 0x00040000 /* Ok for sqlite3_open_v2() */
2213 ** the flags argument to [sqlite3_open_v2()]. Or if [sqlite3_open()]
2851 ** enabled, all filenames passed to [sqlite3_open()], [sqlite3_open_v2()],
4106 ** sqlite3_open() and sqlite3_open_v2() and as UTF-16 in the native byte
4118 ** sqlite3_open() or sqlite3_open_v2(). ^The default encoding for databases
4125 ** The sqlite3_open_v2() interface works like sqlite3_open()
4128 ** sqlite3_open_v2() can take one of
4149 ** If the 3rd parameter to sqlite3_open_v2() is not one of the
4166 ** ^The fourth parameter to sqlite3_open_v2() is the name of the
4188 ** set in the third argument to sqlite3_open_v2(), or if it has
4221 ** VFS is an error. ^If sqlite3_open_v2() is used and the vfs option is
4223 ** the value passed as the fourth parameter to sqlite3_open_v2().
4230 ** third argument to sqlite3_open_v2(). ^If the mode option is set to
4238 ** the flags passed in the third parameter to sqlite3_open_v2().
4243 ** sqlite3_open_v2(). ^Setting the cache parameter to "private" is
4245 ** ^If sqlite3_open_v2() is used and the "cache" parameter is present in
4316 ** of sqlite3_open() and sqlite3_open_v2() must be UTF-8, not whatever
4319 ** sqlite3_open() or sqlite3_open_v2().
4322 ** prior to calling sqlite3_open() or sqlite3_open_v2(). Otherwise, various
4335 SQLITE_API int sqlite3_open_v2(
4615 ** prior successful call to [sqlite3_open()], [sqlite3_open_v2()] or
6514 ** prior to calling [sqlite3_open] or [sqlite3_open_v2]. Otherwise, various
6766 ** calls to [sqlite3_open()], [sqlite3_open_v2()], and [sqlite3_open16()].
6780 ** [sqlite3_open_v2()] with [SQLITE_OPEN_SHAREDCACHE].
7070 ** or [sqlite3_open_v2()] call that provoked the xEntryPoint() will fail.
9635 ** [sqlite3_open_v2()] returns [SQLITE_CANTOPEN], this interface could be
60490 ** sqlite3_open(), sqlite3_open16(), or sqlite3_open_v2().
113733 #define sqlite3_open_v2 sqlite3_api->open_v2
114146 sqlite3_open_v2,
145904 ** user to API functions sqlite3_open() or sqlite3_open_v2(), and for database
146055 ** correspond to flags that may be passed to the sqlite3_open_v2()
146203 ** valid input flags for sqlite3_open_v2() are SQLITE_OPEN_READONLY,
146527 SQLITE_API int sqlite3_open_v2(
172481 ** the SQLITE_CONFIG_URI flag to sqlite3_open_v2(). So if either zTarget
174966 p->rc = sqlite3_open_v2(zName, &db, flags, bUseVfs ? p->zVfsName : 0);