MCPcopy Create free account
hub / github.com/apache/nifi-minifi-cpp / processOnSchedule

Method processOnSchedule

extensions/sql/processors/ExecuteSQL.cpp:83–88  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

81}
82
83void ExecuteSQL::processOnSchedule(core::ProcessContext &context) {
84 initOutputFormat(context);
85
86 context.getProperty(s_sqlSelectQuery.getName(), sqlSelectQuery_);
87 context.getProperty(s_maxRowsPerFlowFile.getName(), max_rows_);
88}
89
90void ExecuteSQL::processOnTrigger(core::ProcessSession& session) {
91 auto statement = connection_->prepareStatement(sqlSelectQuery_);

Callers

nothing calls this directly

Calls 2

getPropertyMethod · 0.45
getNameMethod · 0.45

Tested by

no test coverage detected