Searched refs:TABLE (Results 1 - 11 of 11) sorted by relevance
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/cache/include/ |
H A D | app_event_cache_common.h | 28 const std::string TABLE = "events";
member 47 const std::string TABLE = "observers";
member 54 const std::string TABLE = "event_observer_mapping";
member 61 const std::string TABLE = "user_ids";
member 68 const std::string TABLE = "user_properties";
member 75 const std::string TABLE = "custom_event_params";
member
|
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/cache/ |
H A D | user_property_dao.cpp | 38 HILOG_ERROR(LOG_CORE, "failed to create table=%{public}s", TABLE.c_str());
in UserPropertyDao() 61 std::string sql = SqlUtil::CreateTable(TABLE, fields);
in Create() 74 if (dbStore_->Insert(seq, TABLE, bucket) != NativeRdb::E_OK) {
in Insert() 92 NativeRdb::AbsRdbPredicates predicates(TABLE);
in Update() 108 NativeRdb::AbsRdbPredicates predicates(TABLE);
in Delete() 125 NativeRdb::AbsRdbPredicates predicates(TABLE);
in Query() 149 NativeRdb::AbsRdbPredicates predicates(TABLE);
in QueryAll()
|
H A D | user_id_dao.cpp | 38 HILOG_ERROR(LOG_CORE, "failed to create table=%{public}s", TABLE.c_str());
in UserIdDao() 61 std::string sql = SqlUtil::CreateTable(TABLE, fields);
in Create() 74 if (dbStore_->Insert(seq, TABLE, bucket) != NativeRdb::E_OK) {
in Insert() 92 NativeRdb::AbsRdbPredicates predicates(TABLE);
in Update() 108 NativeRdb::AbsRdbPredicates predicates(TABLE);
in Delete() 125 NativeRdb::AbsRdbPredicates predicates(TABLE);
in Query() 149 NativeRdb::AbsRdbPredicates predicates(TABLE);
in QueryAll()
|
H A D | app_event_observer_dao.cpp | 36 HILOG_ERROR(LOG_CORE, "failed to create table=%{public}s", Observers::TABLE.c_str());
in AppEventObserverDao() 55 std::string sql = SqlUtil::CreateTable(Observers::TABLE, fields);
in Create() 68 if (dbStore_->Insert(seq, Observers::TABLE, bucket) != NativeRdb::E_OK) {
in Insert() 76 NativeRdb::AbsRdbPredicates predicates(Observers::TABLE);
in QuerySeq() 100 NativeRdb::AbsRdbPredicates predicates(Observers::TABLE);
in QuerySeqs() 122 NativeRdb::AbsRdbPredicates predicates(Observers::TABLE);
in Delete() 135 NativeRdb::AbsRdbPredicates predicates(Observers::TABLE);
in Delete()
|
H A D | app_event_mapping_dao.cpp | 39 HILOG_ERROR(LOG_CORE, "failed to create table=%{public}s", TABLE.c_str());
in AppEventMappingDao() 58 std::string sql = SqlUtil::CreateTable(TABLE, fields);
in Create() 71 if (dbStore_->Insert(seq, TABLE, bucket) != NativeRdb::E_OK) {
in Insert() 79 NativeRdb::AbsRdbPredicates predicates(TABLE);
in Delete() 105 NativeRdb::AbsRdbPredicates predicates(TABLE);
in QueryExistEvent()
|
H A D | custom_event_param_dao.cpp | 38 HILOG_ERROR(LOG_CORE, "failed to create table=%{public}s", TABLE.c_str()); in CustomEventParamDao() 64 std::string sql = SqlUtil::CreateTable(TABLE, fields); in Create() 85 if (dbStore_->Insert(seq, TABLE, bucket) != NativeRdb::E_OK) { in Insert() 103 NativeRdb::AbsRdbPredicates predicates(TABLE); in Update() 119 NativeRdb::AbsRdbPredicates predicates(TABLE); in Delete() 134 NativeRdb::AbsRdbPredicates predicates(TABLE); in QueryParamkeys() 162 NativeRdb::AbsRdbPredicates predicates(TABLE); in Query()
|
H A D | app_event_dao.cpp | 37 HILOG_ERROR(LOG_CORE, "failed to create table=%{public}s", Events::TABLE.c_str());
in AppEventDao() 72 std::string sql = SqlUtil::CreateTable(Events::TABLE, fields);
in Create() 96 if (dbStore_->Insert(seq, Events::TABLE, bucket) != NativeRdb::E_OK) {
in Insert() 104 NativeRdb::AbsRdbPredicates predicates(Events::TABLE);
in Delete() 121 NativeRdb::AbsRdbPredicates predicates(Events::TABLE);
in Delete()
|
H A D | app_event_store.cpp | 111 std::string sql = "ALTER TABLE " + Events::TABLE + " ADD COLUMN "
in UpToDbVersion2() 403 std::string sql = "SELECT " + Events::TABLE + ".* FROM " + AppEventMapping::TABLE + " INNER JOIN "
in QueryEvents() 404 + Events::TABLE + " ON " + AppEventMapping::TABLE + "." + AppEventMapping::FIELD_EVENT_SEQ + "="
in QueryEvents() 405 + Events::TABLE + "." + Events::FIELD_SEQ + " WHERE " + AppEventMapping::FIELD_OBSERVER_SEQ + "=?"
in QueryEvents() 406 + " ORDER BY " + AppEventMapping::TABLE + "." + AppEventMapping::FIELD_EVENT_SEQ + " DESC ";
in QueryEvents() 536 std::string whereClause = "(SELECT COUNT(1) AS num FROM " + Events::TABLE + " WHERE "
in DeleteUnusedParamsExceptCurId() 537 + Events::TABLE in DeleteUnusedParamsExceptCurId() [all...] |
/base/hiviewdfx/hiview/adapter/plugins/eventservice/service/idl/include/ |
H A D | data_share_common.h | 50 constexpr const char* TABLE = "subscribe_events"; member
|
/base/hiviewdfx/hiview/adapter/plugins/eventservice/service/idl/src/ |
H A D | data_share_store.cpp | 41 std::string sql = SqlUtil::GenerateCreateSql(EventTable::TABLE, fields); in OnCreate()
|
H A D | data_share_dao.cpp | 40 eventTable_ = EventTable::TABLE; in DataShareDao()
|
Completed in 5 milliseconds