Home
last modified time | relevance | path

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

/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/relational/
Dsqlite_single_relational_storage_engine.cpp26 SQLiteSingleRelationalStorageEngine::SQLiteSingleRelationalStorageEngine(RelationalDBProperties pro… in SQLiteSingleRelationalStorageEngine() function in DistributedDB::SQLiteSingleRelationalStorageEngine
30 SQLiteSingleRelationalStorageEngine::~SQLiteSingleRelationalStorageEngine() in ~SQLiteSingleRelationalStorageEngine()
33 StorageExecutor *SQLiteSingleRelationalStorageEngine::NewSQLiteStorageExecutor(sqlite3 *dbHandle, b… in NewSQLiteStorageExecutor()
41 int SQLiteSingleRelationalStorageEngine::Upgrade(sqlite3 *db) in Upgrade()
53 int SQLiteSingleRelationalStorageEngine::RegisterFunction(sqlite3 *db) const in RegisterFunction()
92 int SQLiteSingleRelationalStorageEngine::CreateNewExecutor(bool isWrite, StorageExecutor *&handle) in CreateNewExecutor()
124 int SQLiteSingleRelationalStorageEngine::ReleaseExecutor(SQLiteSingleVerRelationalStorageExecutor *… in ReleaseExecutor()
135 void SQLiteSingleRelationalStorageEngine::SetSchema(const RelationalSchemaObject &schema) in SetSchema()
141 RelationalSchemaObject SQLiteSingleRelationalStorageEngine::GetSchema() const in GetSchema()
199 int SQLiteSingleRelationalStorageEngine::CreateDistributedTable(const std::string &tableName, in CreateDistributedTable()
[all …]
Dsqlite_single_relational_storage_engine.h26 class SQLiteSingleRelationalStorageEngine : public SQLiteStorageEngine {
28 explicit SQLiteSingleRelationalStorageEngine(RelationalDBProperties properties);
29 ~SQLiteSingleRelationalStorageEngine() override;
32 DISABLE_COPY_ASSIGN_MOVE(SQLiteSingleRelationalStorageEngine);
Dsqlite_relational_store.h184 std::shared_ptr<SQLiteSingleRelationalStorageEngine> sqliteStorageEngine_;
Dsqlite_relational_store.cpp1497 auto engine = new(std::nothrow) SQLiteSingleRelationalStorageEngine(properties); in InitSQLiteStorageEngine()
1502 sqliteStorageEngine_ = std::shared_ptr<SQLiteSingleRelationalStorageEngine>(engine, in InitSQLiteStorageEngine()
1503 [](SQLiteSingleRelationalStorageEngine *releaseEngine) { in InitSQLiteStorageEngine()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/storage/
Ddistributeddb_relational_syncable_storage_test.cpp90 auto sqliteStorageEngine = std::make_shared<SQLiteSingleRelationalStorageEngine>(properties);
Ddistributeddb_relational_get_data_test.cpp1755 … auto sqliteStorageEngine = std::make_shared<SQLiteSingleRelationalStorageEngine>(properties);
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/src/relational/
Drelational_sync_able_storage.h34 explicit RelationalSyncAbleStorage(std::shared_ptr<SQLiteSingleRelationalStorageEngine> engine);
280 std::shared_ptr<SQLiteSingleRelationalStorageEngine> storageEngine_ = nullptr;
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/relational/
Drelational_sync_able_storage.cpp52 …SyncAbleStorage::RelationalSyncAbleStorage(std::shared_ptr<SQLiteSingleRelationalStorageEngine> en… in RelationalSyncAbleStorage()
515 …ibutedTableMode GetCollaborationMode(const std::shared_ptr<SQLiteSingleRelationalStorageEngine> &e… in GetCollaborationMode()
521 inline bool IsCollaborationMode(const std::shared_ptr<SQLiteSingleRelationalStorageEngine> &engine) in IsCollaborationMode()