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 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:
use 2.0.0 release
wait for new 2.0.2 release, which is right now in testing process
OtaSanek