Home
last modified time | relevance | path

Searched refs:TABLE_SIM_INFO (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/base/telephony/telephony_data/sim/src/
H A Drdb_sim_callback.cpp32 …"ALTER TABLE " + std::string(TABLE_SIM_INFO) + " DROP COLUMN " + std::string(SimData::IS_ACTIVE) +… in OnUpgrade()
33 rdbStore.ExecuteSql("ALTER TABLE " + std::string(TABLE_SIM_INFO) + " ADD COLUMN " + in OnUpgrade()
38 rdbStore.ExecuteSql("ALTER TABLE " + std::string(TABLE_SIM_INFO) + " ADD COLUMN " + in OnUpgrade()
40 rdbStore.ExecuteSql("ALTER TABLE " + std::string(TABLE_SIM_INFO) + " ADD COLUMN " + in OnUpgrade()
42 rdbStore.ExecuteSql("ALTER TABLE " + std::string(TABLE_SIM_INFO)+ " ADD COLUMN " + in OnUpgrade()
H A Drdb_sim_helper.cpp52 createTableStr.append("CREATE TABLE IF NOT EXISTS ").append(TABLE_SIM_INFO); in CreateSimInfoTableStr()
116 result = Update(changedRows, TABLE_SIM_INFO, values, whereClause); in SetDefaultCardByType()
160 return Update(changedRows, TABLE_SIM_INFO, values, whereClause); in UpdateCardStateByType()
177 sql.append("delete from ").append(TABLE_SIM_INFO); in ClearData()
H A Dsim_ability.cpp139 helper_.Insert(id, values, TABLE_SIM_INFO); in Insert()
161 … NativeRdb::AbsRdbPredicates *absRdbPredicates = new NativeRdb::AbsRdbPredicates(TABLE_SIM_INFO); in Query()
201 … NativeRdb::AbsRdbPredicates *absRdbPredicates = new NativeRdb::AbsRdbPredicates(TABLE_SIM_INFO); in Update()
280 … NativeRdb::AbsRdbPredicates *absRdbPredicates = new NativeRdb::AbsRdbPredicates(TABLE_SIM_INFO); in Delete()
/ohos5.0/base/telephony/telephony_data/interfaces/innerkits/include/
H A Dsim_data.h101 constexpr const char *TABLE_SIM_INFO = "sim_info"; variable