Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/
H A Dsqlite_single_ver_storage_engine.cpp295 std::string attachAbsPath; in AttachMainDbAndCacheDb() local
297attachAbsPath = GetDbDir(option_.subdir, DbType::CACHE) + "/" + DBConstant::SINGLE_VER_CACHE_STORE… in AttachMainDbAndCacheDb()
299 …errCode = handle->AttachMainDbAndCacheDb(option_.cipherType, option_.passwd, attachAbsPath, stateB… in AttachMainDbAndCacheDb()
301attachAbsPath = GetDbDir(option_.subdir, DbType::MAIN) + "/" + DBConstant::SINGLE_VER_DATA_STORE + in AttachMainDbAndCacheDb()
303 …errCode = handle->AttachMainDbAndCacheDb(option_.cipherType, option_.passwd, attachAbsPath, stateB… in AttachMainDbAndCacheDb()
327 std::string attachAbsPath; in AttachMainDbAndCacheDb() local
329attachAbsPath = GetDbDir(option_.subdir, DbType::CACHE) + "/" + DBConstant::SINGLE_VER_CACHE_STORE… in AttachMainDbAndCacheDb()
331 …LiteUtils::AttachNewDatabase(dbHandle, option_.cipherType, option_.passwd, attachAbsPath, "cache"); in AttachMainDbAndCacheDb()
333attachAbsPath = GetDbDir(option_.subdir, DbType::MAIN) + "/" + DBConstant::SINGLE_VER_DATA_STORE + in AttachMainDbAndCacheDb()
335 …iteUtils::AttachNewDatabase(dbHandle, option_.cipherType, option_.passwd, attachAbsPath, "maindb"); in AttachMainDbAndCacheDb()