Home
last modified time | relevance | path

Searched defs:sql (Results 1 – 15 of 15) sorted by relevance

/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/cache/
Dapp_event_store.cpp40 std::string sql; in GenerateCreateSql() local
57 std::string sql; in GenerateDropSql() local
73 std::string sql = GenerateCreateSql(Blocks::TABLE, fields); in OnCreate() local
120 std::string sql = GenerateCreateSql(Block::TABLE_PREFIX + name, fields); in CreateBlockTable() local
137 std::string sql = GenerateDropSql(Block::TABLE_PREFIX + name); in DropBlockTable() local
Dapp_event_block_dao.cpp89 std::string sql; in DeletePackageByNum() local
110 std::string sql; in GetPackagesBySize() local
147 std::string sql; in CountPackages() local
Dapp_event_blocks_dao.cpp43 std::string sql; in IsBlockExists() local
100 std::string sql; in GetBlocks() local
/base/hiviewdfx/hiview/adapter/dbstore/include/
Ddata_query.h138 … template<typename T> static std::stringstream& AppendValue(std::stringstream &sql, const T &value) in AppendValue()
144 static std::stringstream& AppendValue(std::stringstream &sql, const std::string &value) in AppendValue()
150 static std::stringstream& AppendValue(std::stringstream &sql, const char* value) in AppendValue()
156 static std::stringstream& AppendValue(std::stringstream &sql, char* value) in AppendValue()
/base/security/access_token/services/accesstokenmanager/main/cpp/src/database/
Dsqlite_storage.cpp216 std::string sql = "insert into " + it->second.tableName_ + " values("; in CreateInsertPrepareSqlCmd() local
236 std::string sql = "delete from " + it->second.tableName_ + " where 1 = 1"; in CreateDeletePrepareSqlCmd() local
256 std::string sql = "update " + it->second.tableName_ + " set "; in CreateUpdatePrepareSqlCmd() local
282 std::string sql = "select * from " + it->second.tableName_; in CreateSelectPrepareSqlCmd() local
292 std::string sql = "create table if not exists "; in CreateHapTokenInfoTable() local
328 std::string sql = "create table if not exists "; in CreateNativeTokenInfoTable() local
356 std::string sql = "create table if not exists "; in CreatePermissionDefinitionTable() local
394 std::string sql = "create table if not exists "; in CreatePermissionStateTable() local
/base/request/request/download/ability/src/
Dsql_analyzer.cpp54 bool SqlAnalyzer::CharCheck(char &ch, std::string sql, std::size_t &pos) in CharCheck()
87 bool SqlAnalyzer::StrCheck(char &ch, std::size_t strlen, std::string sql, std::size_t &pos) in StrCheck()
105 bool SqlAnalyzer::FindIllegalWords(std::string sql) in FindIllegalWords()
/base/security/access_token/services/privacymanager/src/database/
Dpermission_used_record_db.cpp235 std::string sql = "insert into " + it->second.tableName_ + " values("; in CreateInsertPrepareSqlCmd() local
255 std::string sql = "delete from " + it->second.tableName_ + " where 1 = 1"; in CreateDeletePrepareSqlCmd() local
275 std::string sql = "update " + it->second.tableName_ + " set "; in CreateUpdatePrepareSqlCmd() local
303 std::string sql = "select * from " + it->second.tableName_ + " where 1 = 1"; in CreateSelectByConditionPrepareSqlCmd() local
338 std::string sql = "select count(*) from " + it->second.tableName_; in CreateCountPrepareSqlCmd() local
349 std::string sql = "delete from " + it->second.tableName_ + " where "; in CreateDeleteExpireRecordsPrepareSqlCmd() local
379 std::string sql = "delete from " + it->second.tableName_ + " where "; in CreateDeleteExcessiveRecordsPrepareSqlCmd() local
397 std::string sql = "select distinct "; in CreateGetDistinctValue() local
408 std::string sql = "create table if not exists "; in CreatePermissionRecordTable() local
/base/hiviewdfx/hiview/adapter/dbstore/
Ddata_query.cpp99 std::stringstream sql; in ToString() local
134 std::string sql = sql_.str().empty() ? "/*" : sql_.str(); in ToDelString() local
/base/telephony/data_storage/common/src/
Drdb_base_helper.cpp86 int RdbBaseHelper::ExecuteSql(const std::string &sql) in ExecuteSql()
95 int RdbBaseHelper::ExecuteSql(const std::string &sql, const std::vector<NativeRdb::ValueObject> &bi… in ExecuteSql()
105 const std::string &sql, const std::vector<std::string> &selectionArgs) in QuerySql()
/base/hiviewdfx/hiview/base/event_store/
Dsys_event_query_wrapper.cpp49 void QueryStatusLogUtil::LogTooManyQueryRules(const std::string sql) in LogTooManyQueryRules()
64 void QueryStatusLogUtil::LogQueryOverTime(time_t costTime, const std::string sql, bool innerQuery) in LogQueryOverTime()
71 void QueryStatusLogUtil::LogQueryCountOverLimit(const int32_t queryCount, const std::string& sql, in LogQueryCountOverLimit()
79 void QueryStatusLogUtil::LogQueryTooFrequently(const std::string& sql, const std::string& processNa… in LogQueryTooFrequently()
/base/telephony/data_storage/sms_mms/src/
Drdb_sms_mms_helper.cpp203 std::string sql; in QueryMaxGroupId() local
212 std::string sql; in StatisticsUnRead() local
/base/telephony/data_storage/opkey/src/
Drdb_opkey_callback.cpp72 std::string sql; in ClearData() local
/base/telephony/data_storage/pdp_profile/src/
Drdb_pdp_profile_helper.cpp118 std::string sql; in ResetApn() local
/base/telephony/data_storage/sim/src/
Drdb_sim_helper.cpp179 std::string sql; in ClearData() local
/base/security/access_token/services/common/database/src/
Dstatement.cpp27 Statement::Statement(sqlite3* db, const std::string& sql) : db_(db), sql_(sql) in Statement()