• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/sqlite3/

Lines Matching defs:sqlite3_open_v2

1305 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()]
1389 ** [sqlite3_open_v2()], and not previously closed.
1614 ** 3rd parameter to the [sqlite3_open_v2()] interface and
1617 #define SQLITE_OPEN_READONLY 0x00000001 /* Ok for sqlite3_open_v2() */
1618 #define SQLITE_OPEN_READWRITE 0x00000002 /* Ok for sqlite3_open_v2() */
1619 #define SQLITE_OPEN_CREATE 0x00000004 /* Ok for sqlite3_open_v2() */
1623 #define SQLITE_OPEN_URI 0x00000040 /* Ok for sqlite3_open_v2() */
1624 #define SQLITE_OPEN_MEMORY 0x00000080 /* Ok for sqlite3_open_v2() */
1632 #define SQLITE_OPEN_NOMUTEX 0x00008000 /* Ok for sqlite3_open_v2() */
1633 #define SQLITE_OPEN_FULLMUTEX 0x00010000 /* Ok for sqlite3_open_v2() */
1634 #define SQLITE_OPEN_SHAREDCACHE 0x00020000 /* Ok for sqlite3_open_v2() */
1635 #define SQLITE_OPEN_PRIVATECACHE 0x00040000 /* Ok for sqlite3_open_v2() */
1637 #define SQLITE_OPEN_NOFOLLOW 0x01000000 /* Ok for sqlite3_open_v2() */
2321 ** the flags argument to [sqlite3_open_v2()]. Or if [sqlite3_open()]
2966 ** enabled, all filenames passed to [sqlite3_open()], [sqlite3_open_v2()],
4353 ** sqlite3_open() and sqlite3_open_v2() and as UTF-16 in the native byte
4365 ** sqlite3_open() or sqlite3_open_v2(). ^The default encoding for databases
4372 ** The sqlite3_open_v2() interface works like sqlite3_open()
4375 ** sqlite3_open_v2() must include, at a minimum, one of the following
4434 ** If the 3rd parameter to sqlite3_open_v2() is not one of the
4439 ** ^The fourth parameter to sqlite3_open_v2() is the name of the
4461 ** set in the third argument to sqlite3_open_v2(), or if it has
4494 ** VFS is an error. ^If sqlite3_open_v2() is used and the vfs option is
4496 ** the value passed as the fourth parameter to sqlite3_open_v2().
4503 ** third argument to sqlite3_open_v2(). ^If the mode option is set to
4511 ** the flags passed in the third parameter to sqlite3_open_v2().
4516 ** sqlite3_open_v2(). ^Setting the cache parameter to "private" is
4518 ** ^If sqlite3_open_v2() is used and the "cache" parameter is present in
4590 ** of sqlite3_open() and sqlite3_open_v2() must be UTF-8, not whatever
4593 ** sqlite3_open() or sqlite3_open_v2().
4596 ** prior to calling sqlite3_open() or sqlite3_open_v2(). Otherwise, various
4609 SQLITE_API int sqlite3_open_v2(
5046 ** prior successful call to [sqlite3_open()], [sqlite3_open_v2()] or
7099 ** prior to calling [sqlite3_open] or [sqlite3_open_v2]. Otherwise, various
7452 ** calls to [sqlite3_open()], [sqlite3_open_v2()], and [sqlite3_open16()].
7464 ** individual database connections using the [sqlite3_open_v2()] interface
7470 ** [sqlite3_open_v2()] with [SQLITE_OPEN_SHAREDCACHE].
7774 ** or [sqlite3_open_v2()] call that provoked the xEntryPoint() will fail.
10626 ** [sqlite3_open_v2()] returns [SQLITE_CANTOPEN], this interface could be
65043 ** sqlite3_open(), sqlite3_open16(), or sqlite3_open_v2().
125900 #define sqlite3_open_v2 sqlite3_api->open_v2
126350 sqlite3_open_v2,
166868 ** user to API functions sqlite3_open() or sqlite3_open_v2(), and for database
167023 ** correspond to flags that may be passed to the sqlite3_open_v2()
167189 ** valid input flags for sqlite3_open_v2() are SQLITE_OPEN_READONLY,
167481 SQLITE_API int sqlite3_open_v2(
198755 ** the SQLITE_CONFIG_URI flag to sqlite3_open_v2(). So if either zTarget
201637 p->rc = sqlite3_open_v2(zName, &db, flags, bUseVfs ? p->zVfsName : 0);