Lines Matching defs:table

136  * @brief Insert contact data into the raw_contact table
138 * @param table Raw_contact table
143 int64_t ContactsDataBase::InsertRawContact(std::string table, OHOS::NativeRdb::ValuesBucket rawContactValues)
219 * @brief Insert data into table contact_data
221 * @param table Insert tableName
226 int64_t ContactsDataBase::InsertContactData(std::string table, OHOS::NativeRdb::ValuesBucket contactDataValues)
259 int ret = store_->Insert(outDataRowId, table, contactDataValues);
314 * @brief Insert data into table groups
316 * @param table Insert tableName
321 int64_t ContactsDataBase::InsertGroup(std::string table, OHOS::NativeRdb::ValuesBucket initialValues)
332 int ret = store_->Insert(outGroupRowId, table, initialValues);
341 * @brief Insert data into the contact_blocklist table
343 * @param table Insert tableName
348 int64_t ContactsDataBase::InsertBlockList(std::string table, OHOS::NativeRdb::ValuesBucket initialValues)
351 int ret = store_->Insert(outRowId, table, initialValues);
359 * @brief Update data into contact_data table
403 * @brief Update data in the raw_contact table
453 * @brief Update data in the contact_blocklist table
478 * @brief Update data in table groups
502 * @brief Delete data from contact_blocklist table
525 * @brief Delete data from table groups
564 * @brief Delete data from contact_data table
603 * @brief Delete data from the contact table
726 * @brief Delete data from the raw_contact table
1173 store.ExecuteSql("DROP table database_backup_task");
1174 store.ExecuteSql("ALTER table database_backup RENAME TO database_backup_task");