Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributeddatamgr/preferences/frameworks/native/platform/src/
H A Dpreferences_db_adapter.cpp178 int PreferencesDb::CreateCollection() in CreateCollection() function in OHOS::NativePreferences::PreferencesDb
287 errCode = CreateCollection(); in Init()
320 (void)CreateCollection(); in Put()
355 (void)CreateCollection(); in Delete()
392 (void)CreateCollection(); in Get()
469 (void)CreateCollection(); in GetAll()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/common/include/
H A Dgrd_api_manager.h29 typedef int32_t (*CreateCollection)(GRD_DB *db, const char *collectionName, const char *optionStr, … typedef
68 CreateCollection CreateCollectionApi = nullptr;
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/oh_adapter/include/
H A Dkv_store_executor.h40 …virtual int CreateCollection(const std::string &name, const std::string &option, bool ignoreExists…
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/oh_adapter/src/
H A Dsqlite_store_executor_impl.h48 …int CreateCollection(const std::string &name, const std::string &option, bool ignoreExists) overri…
H A Dsqlite_store_executor_impl.cpp320 int SqliteStoreExecutorImpl::CreateCollection(const std::string &name, const std::string &option, b… in CreateCollection() function in DocumentDB::SqliteStoreExecutorImpl
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/interface/include/
H A Ddocument_store.h34 int CreateCollection(const std::string &name, const std::string &option, uint32_t flags);
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/executor/document/
H A Dgrd_document_api_inner.cpp33 int ret = db->store_->CreateCollection(name, option, flags); in GRD_CreateCollectionInner()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/common/src/
H A Dgrd_api_manager.cpp84 GRD_DBApiInfo.CreateCollectionApi = (CreateCollection)dlsym(g_library, "GRD_CreateCollection"); in GRD_DBApiInitEnhance()
/ohos5.0/foundation/distributeddatamgr/preferences/frameworks/native/platform/include/
H A Dpreferences_db_adapter.h118 int CreateCollection();
/ohos5.0/foundation/distributeddatamgr/preferences/frameworks/native/src/
H A Dpreferences_enhance_impl.cpp270 errCode = db_->CreateCollection(); in Clear()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/interface/src/
H A Ddocument_store.cpp39 int DocumentStore::CreateCollection(const std::string &name, const std::string &option, uint32_t fl… in CreateCollection() function in DocumentDB::DocumentStore
70 errCode = executor_->CreateCollection(lowerCaseName, oriOptStr, ignoreExists); in CreateCollection()