i have a simple udf that i can invoke such as :
select doSomething('input 1', 'input 2', 'input 3') from sysibm.sysdummy1;
but i'd like to invoke this from java/jdbc passing input parameters.
the following :
select doSomething(?,?,?) from sysibm.sysdummy1;
gives a sql-418. i don't think that it likes the parameters in the select clause. any ideas on how i can do this?