Home
last modified time | relevance | path

Searched refs:ExecutorOperation (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/relational/
H A Dprepared_stmt.h26 enum ExecutorOperation { MIN_LIMIT, QUERY, DELETE, UPDATE, INSERT, MAX_LIMIT }; enum
29 …PreparedStmt(ExecutorOperation opCode, const std::string &sql, const std::vector<std::string> &bin…
31 void SetOpCode(ExecutorOperation opCode);
35 ExecutorOperation GetOpCode() const;
49 ExecutorOperation opCode_ = ExecutorOperation::MIN_LIMIT;
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/relational/
H A Dprepared_stmt.cpp20 PreparedStmt::PreparedStmt(ExecutorOperation opCode, const std::string &sql, const std::vector<std:… in PreparedStmt()
24 void PreparedStmt::SetOpCode(ExecutorOperation opCode) in SetOpCode()
39 PreparedStmt::ExecutorOperation PreparedStmt::GetOpCode() const in GetOpCode()
56 …return opCode_ == ExecutorOperation::QUERY && !sql_.empty() && bindArgs_.size() <= DBConstant::MAX… in IsValid()
122 opCode_ = static_cast<ExecutorOperation>(opCode); in DeSerialize()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/device/
H A Dremote_executor_packet.h56 void SetOpCode(PreparedStmt::ExecutorOperation opCode);
H A Dremote_executor_packet.cpp164 void RemoteExecutorRequestPacket::SetOpCode(PreparedStmt::ExecutorOperation opCode) in SetOpCode()
H A Dremote_executor.cpp768 packet->SetOpCode(PreparedStmt::ExecutorOperation::QUERY); in FillRequestPacket()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/relational/
H A Drelational_sync_able_storage.cpp866 if (prepStmt.GetOpCode() != PreparedStmt::ExecutorOperation::QUERY || !prepStmt.IsValid()) { in GetRemoteQueryData()