SQL parameter

How can I pass a graph parameter to a DBInput SQL Statement?

I’ve tried something like ‘select * from foo where bar = ${myparameter}’ but that doesn’t seem to work.

How did you pass your graph parameter to SQL statement? If you used command line parameter definition, it is known bug of 2.0.1 release. These parameters are not taken into account. You have three options to solve this problem:

  1. define graph parameter direct in graph
  1. use 2.0.0 release

  2. wait for new 2.0.2 release, which is right now in testing process

OtaSanek