Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
#QPARAM key1 value1
#QPARAM key2 value2
#QPARAM key3 value3

Remark for Developers: There

  • These values could be read from the LogicalQuery-Object with getUserParameter(key

...

  • )
  • In Transformation, this can be read with

    Code Block
    ParameterQueryParams keys = config.getOption(ParameterQueryParams.class.getName());
    Map<String, String> map = keys.getValue();
    String value = map.get("key1");

#QPRIORITY

Set the priority of the next following query

...