Home
last modified time | relevance | path

Searched refs:replaceValues (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/
H A Dabs_predicates.cpp475 std::vector<std::string> replaceValues(values.size(), "?"); in In() local
477 AppendWhereClauseWithInOrNotIn(" IN ", field, replaceValues); in In()
498 std::vector<std::string> replaceValues(values.size(), "?"); in NotIn() local
500 AppendWhereClauseWithInOrNotIn(" NOT IN ", field, replaceValues); in NotIn()
561 …t std::string &methodName, const std::string &field, const std::vector<std::string> &replaceValues) in AppendWhereClauseWithInOrNotIn() argument
563 whereClause += field + StringUtils::SurroundWithFunction(methodName, ",", replaceValues); in AppendWhereClauseWithInOrNotIn()
/ohos5.0/foundation/distributeddatamgr/relational_store/interfaces/inner_api/rdb/include/
H A Dabs_predicates.h132 const std::vector<std::string> &replaceValues);