| 73 | } |
| 74 | |
| 75 | void PutSQL::processOnSchedule(core::ProcessContext& context) { |
| 76 | std::string sqlStatements; |
| 77 | context.getProperty(s_sqlStatements.getName(), sqlStatements); |
| 78 | sqlStatements_ = utils::StringUtils::split(sqlStatements, ";"); |
| 79 | } |
| 80 | |
| 81 | void PutSQL::processOnTrigger(core::ProcessSession& session) { |
| 82 | const auto dbSession = connection_->getSession(); |
no test coverage detected