Searched refs:setSql (Results 1 - 8 of 8) sorted by relevance
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/test/ |
H A D | rdb_general_store_test.cpp | 179 std::string sqlIn = " UPDATE test SET setSql WHERE whereSql";
564 std::string setSql = "setSql";
in HWTEST_F() local 568 auto result = store->Update("", setSql, std::move(values), whereSql, std::move(conditions));
in HWTEST_F() 574 result = store->Update(table, setSql, std::move(values), whereSql, std::move(conditions));
in HWTEST_F() 577 result = store->Update(table, setSql, std::move(g_RdbValues), "", std::move(conditions));
in HWTEST_F() 580 result = store->Update(table, setSql, std::move(g_RdbValues), whereSql, std::move(conditions));
in HWTEST_F() 583 result = store->Update(table, setSql, std::move(g_RdbValues), whereSql, std::move(g_RdbValues));
in HWTEST_F() 588 result = store->Update(table, setSql, std::move(g_RdbValues), whereSql, std::move(g_RdbValues));
in HWTEST_F() 591 result = store->Update("test", setSql, st in HWTEST_F() [all...] |
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/test/mock/ |
H A D | general_store_mock.h | 33 int32_t Update(const std::string &table, const std::string &setSql, Values &&values, const std::string &whereSql,
|
H A D | general_store_mock.cpp | 51 int32_t GeneralStoreMock::Update(const std::string &table, const std::string &setSql, Values &&values, in Update() argument
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/include/store/ |
H A D | general_store.h | 139 virtual int32_t Update(const std::string &table, const std::string &setSql, Values &&values,
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/kvdb/ |
H A D | kvdb_general_store.h | 55 int32_t Update(const std::string &table, const std::string &setSql, Values &&values, const std::string &whereSql,
|
H A D | kvdb_general_store.cpp | 303 int32_t KVDBGeneralStore::Update(const std::string &table, const std::string &setSql, Values &&values, in Update() argument
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/rdb/ |
H A D | rdb_general_store.h | 67 int32_t Update(const std::string &table, const std::string &setSql, Values &&values, const std::string &whereSql,
|
H A D | rdb_general_store.cpp | 364 int32_t RdbGeneralStore::Update(const std::string &table, const std::string &setSql, Values &&values, in Update() argument 371 if (setSql.empty() || values.size() == 0) { in Update() 372 ZLOGE("Update: setSql and values can't be empty!"); in Update() 380 std::string sqlIn = " UPDATE " + table + " SET " + setSql + " WHERE " + whereSql; in Update()
|
Completed in 7 milliseconds