Home
last modified time | relevance | path

Searched refs:sqlite3_open_v2 (Results 1 – 10 of 10) sorted by relevance

/freebsd-src/contrib/kyua/utils/sqlite/
H A Dc_gate_test.cpp46 ATF_REQUIRE_EQ(SQLITE_OK, ::sqlite3_open_v2(":memory:", &raw_db, in ATF_TEST_CASE_BODY()
82 ATF_REQUIRE_EQ(SQLITE_OK, ::sqlite3_open_v2( in ATF_TEST_CASE_BODY()
H A Ddatabase_test.cpp62 ATF_REQUIRE_EQ(SQLITE_OK, ::sqlite3_open_v2("test.db", &db, in ATF_TEST_CASE_BODY()
95 ATF_REQUIRE_EQ(SQLITE_OK, ::sqlite3_open_v2("test.db", &db, in ATF_TEST_CASE_BODY()
H A Ddatabase.cpp109 const int error = ::sqlite3_open_v2(file, &db, flags, NULL); in safe_open()
/freebsd-src/crypto/heimdal/lib/krb5/
H A Dscache.c237 ret = sqlite3_open_v2(name, db, SQLITE_OPEN_READWRITE, NULL); in default_db()
344 ret = sqlite3_open_v2(s->file, &s->db, SQLITE_OPEN_READWRITE|flags, NULL); in open_database()
/freebsd-src/crypto/heimdal/lib/hdb/
H A Dhdb-sqlite.c206 ret = sqlite3_open_v2(hsdb->db_file, &hsdb->db, in hdb_sqlite_open_database()
/freebsd-src/contrib/sqlite3/
H A Dsqlite3ext.h539 #define sqlite3_open_v2 sqlite3_api->open_v2 macro
H A Dsqlite3.h265 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()]
349 ** [sqlite3_open_v2()], and not previously closed.
579 ** 3rd parameter to the [sqlite3_open_v2()] interface and
582 ** Only those flags marked as "Ok for sqlite3_open_v2()" may be
583 ** used as the third argument to the [sqlite3_open_v2()] interface.
584 ** The other flags have historically been ignored by sqlite3_open_v2(),
586 ** raised if any of the disallowed bits are passed into sqlite3_open_v2().
590 ** [sqlite3_open_v2()] does *not* cause the underlying database file
592 ** [sqlite3_open_v2()] has historically be a no-op and might become an
595 #define SQLITE_OPEN_READONLY 0x00000001 /* Ok for sqlite3_open_v2() */
[all...]
H A Dshell.c17454 if( sqlite3_open_v2(p->zUri, &db, flags, 0) ){ in recoverOpenOutput()
23418 sqlite3_open_v2(zDbFilename, &p->db, in open_db()
23432 sqlite3_open_v2(zDbFilename, &p->db, in open_db()
23438 sqlite3_open_v2(zDbFilename, &p->db, in open_db()
25621 rc = sqlite3_open_v2(cmd.zFile, &cmd.db, flags, in arDotCommand()
26198 rc = sqlite3_open_v2(zDestFile, &pDest, in do_meta_command()
H A Dsqlite3.c578 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()]
662 ** [sqlite3_open_v2()], and not previously closed.
892 ** 3rd parameter to the [sqlite3_open_v2()] interface and
895 ** Only those flags marked as "Ok for sqlite3_open_v2()" may be
896 ** used as the third argument to the [sqlite3_open_v2()] interface.
897 ** The other flags have historically been ignored by sqlite3_open_v2(),
899 ** raised if any of the disallowed bits are passed into sqlite3_open_v2().
903 ** [sqlite3_open_v2()] does *not* cause the underlying database file
905 ** [sqlite3_open_v2()] has historically be a no-op and might become an
908 #define SQLITE_OPEN_READONLY 0x00000001 /* Ok for sqlite3_open_v2() */
[all...]
/freebsd-src/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c2089 rc = sqlite3_open_v2(zDestFile, &pDest, in DbObjCmd()
3191 rc = sqlite3_open_v2(zSrcFile, &pSrc, in DbObjCmd()
3882 rc = sqlite3_open_v2(zFile, &p->db, flags, zVfs); in DbMain()