Searched refs:SELECT_COLUMNS (Results 1 - 5 of 5) sorted by relevance
/base/notification/distributed_notification_service/services/ans/src/ |
H A D | reminder_table.cpp | 84 std::string ReminderBaseTable::SELECT_COLUMNS = ""; member in OHOS::Notification::ReminderBaseTable 87 std::string ReminderAlarmTable::SELECT_COLUMNS = ""; member in OHOS::Notification::ReminderAlarmTable 90 std::string ReminderCalendarTable::SELECT_COLUMNS = ""; member in OHOS::Notification::ReminderCalendarTable 93 std::string ReminderTimerTable::SELECT_COLUMNS = ""; member in OHOS::Notification::ReminderTimerTable 113 AddColumn(REMINDER_ID, "INTEGER PRIMARY KEY", ADD_COLUMNS, SELECT_COLUMNS); in InitDbColumns() 114 AddColumn(PACKAGE_NAME, "TEXT NOT NULL", ADD_COLUMNS, SELECT_COLUMNS); in InitDbColumns() 115 AddColumn(USER_ID, "INT NOT NULL", ADD_COLUMNS, SELECT_COLUMNS); in InitDbColumns() 116 AddColumn(UID, "INT NOT NULL", ADD_COLUMNS, SELECT_COLUMNS); in InitDbColumns() 117 AddColumn(SYSTEM_APP, "TEXT NOT NULL", ADD_COLUMNS, SELECT_COLUMNS); in InitDbColumns() 118 AddColumn(REMINDER_TYPE, "INT NOT NULL", ADD_COLUMNS, SELECT_COLUMNS); in InitDbColumns() [all...] |
H A D | reminder_table_old.cpp | 76 std::string ReminderTable::SELECT_COLUMNS = ""; member in OHOS::Notification::ReminderTable 149 SELECT_COLUMNS.append(name).append(","); in AddColumn() 152 SELECT_COLUMNS.append(name); in AddColumn()
|
H A D | reminder_store.cpp | 159 std::string sql = "SELECT " + ReminderTable::SELECT_COLUMNS + " FROM " in GetOldReminders() 428 std::string sql = "SELECT " + ReminderBaseTable::SELECT_COLUMNS + " FROM " in GetAllValidReminders() 758 resultSet = Query(ReminderTimerTable::TABLE_NAME, ReminderTimerTable::SELECT_COLUMNS, reminderId); in BuildReminder() 764 resultSet = Query(ReminderCalendarTable::TABLE_NAME, ReminderCalendarTable::SELECT_COLUMNS, reminderId); in BuildReminder() 770 resultSet = Query(ReminderAlarmTable::TABLE_NAME, ReminderAlarmTable::SELECT_COLUMNS, reminderId); in BuildReminder()
|
/base/notification/distributed_notification_service/services/ans/include/ |
H A D | reminder_table.h | 191 static std::string SELECT_COLUMNS; member in OHOS::Notification::ReminderBaseTable 214 static std::string SELECT_COLUMNS; member in OHOS::Notification::ReminderAlarmTable 245 static std::string SELECT_COLUMNS; member in OHOS::Notification::ReminderCalendarTable 268 static std::string SELECT_COLUMNS; member in OHOS::Notification::ReminderTimerTable
|
H A D | reminder_table_old.h | 229 static std::string SELECT_COLUMNS; member in OHOS::Notification::ReminderTable
|
Completed in 4 milliseconds