Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/oh_adapter/src/
H A Dsqlite_store_executor_impl.cpp66 SqliteStoreExecutorImpl::SqliteStoreExecutorImpl(sqlite3 *handle) : dbHandle_(handle) {} in SqliteStoreExecutorImpl() function in DocumentDB::SqliteStoreExecutorImpl
68 SqliteStoreExecutorImpl::~SqliteStoreExecutorImpl() in ~SqliteStoreExecutorImpl()
74 int SqliteStoreExecutorImpl::GetDBConfig(std::string &config) in GetDBConfig()
84 int SqliteStoreExecutorImpl::SetDBConfig(const std::string &config) in SetDBConfig()
92 int SqliteStoreExecutorImpl::StartTransaction() in StartTransaction()
97 int SqliteStoreExecutorImpl::Commit() in Commit()
102 int SqliteStoreExecutorImpl::Rollback() in Rollback()
290 int SqliteStoreExecutorImpl::DelData(const std::string &collName, Key &key) in DelData()
351 int SqliteStoreExecutorImpl::DropCollection(const std::string &name, bool ignoreNonExists) in DropCollection()
378 bool SqliteStoreExecutorImpl::IsCollectionExists(const std::string &name, int &errCode) in IsCollectionExists()
[all …]
H A Dsqlite_store_executor_impl.h25 class SqliteStoreExecutorImpl : public KvStoreExecutor {
29 SqliteStoreExecutorImpl() = default;
30 explicit SqliteStoreExecutorImpl(sqlite3 *handle);
31 ~SqliteStoreExecutorImpl() override;
H A Dkv_store_manager.cpp32 int errCode = SqliteStoreExecutorImpl::CreateDatabase(path, config, db); in GetKvStore()
38 auto *sqliteExecutor = new (std::nothrow) SqliteStoreExecutorImpl(db); in GetKvStore()