MCPcopy Create free account
hub / github.com/FreeOpcUa/python-opcua / _get_event_columns

Method _get_event_columns

opcua/server/history_sql.py:310–314  ·  view source on GitHub ↗
(self, ev_fields)

Source from the content-addressed store, hash-verified

308 return self._list_to_sql_str(names), self._list_to_sql_str(placeholders, False), tuple(ev_variant_binaries)
309
310 def _get_event_columns(self, ev_fields):
311 fields = []
312 for field in ev_fields:
313 fields.append(field + ' BLOB')
314 return self._list_to_sql_str(fields, False)
315
316 def _get_select_clauses(self, source_id, evfilter):
317 s_clauses = []

Callers 1

new_historized_eventMethod · 0.95

Calls 1

_list_to_sql_strMethod · 0.95

Tested by

no test coverage detected