Home
last modified time | relevance | path

Searched refs:openFileFlags (Results 1 - 2 of 2) sorted by relevance

/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/include/
H A Dsqlite_connection.h112 int32_t OpenDatabase(const std::string &dbPath, int openFileFlags);
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/
H A Dsqlite_connection.cpp232 int openFileFlags = config.IsReadOnly() ? (SQLITE_OPEN_READONLY | SQLITE_OPEN_FULLMUTEX) in InnerOpen() local
234 errCode = OpenDatabase(dbPath, openFileFlags); in InnerOpen()
269 int32_t SqliteConnection::OpenDatabase(const std::string &dbPath, int openFileFlags) in OpenDatabase() argument
271 int errCode = sqlite3_open_v2(dbPath.c_str(), &dbHandle_, openFileFlags, nullptr); in OpenDatabase()
274 errCode, SqliteUtils::Anonymous(dbPath).c_str(), openFileFlags, errno); in OpenDatabase()

Completed in 3 milliseconds