Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/relational/
H A Dprepared_stmt.cpp21 : opCode_(opCode), sql_(sql), bindArgs_(bindArgs) {} in PreparedStmt()
36 bindArgs_ = std::move(bindArgs); in SetBindArgs()
51 return bindArgs_; in GetBindArgs()
56 …return opCode_ == ExecutorOperation::QUERY && !sql_.empty() && bindArgs_.size() <= DBConstant::MAX… in IsValid()
65 for (const auto &bindArg : bindArgs_) { in CalcLength()
87 (void)parcel.WriteInt(static_cast<int>(bindArgs_.size())); in Serialize()
88 for (const auto &bindArg : bindArgs_) { in Serialize()
105 bindArgs_.clear(); in DeSerialize()
139 bindArgs_.emplace_back(std::move(bindArg)); in DeSerialize()
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/
H A Dsqlite_shared_result_set.cpp43 : AbsSharedResultSet(path), conn_(std::move(conn)), qrySql_(std::move(sql)), bindArgs_(args) in SqliteSharedResultSet()
103 errCode = statement->Bind(bindArgs_); in PrepareStep()
150 auto bindArgs = std::move(bindArgs_); in Close()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/relational/
H A Dprepared_stmt.h51 std::vector<std::string> bindArgs_; variable
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/include/
H A Dsqlite_shared_result_set.h76 std::vector<ValueObject> bindArgs_; variable