Hi everybody,
I am using a function inside my TOracleDataSet SQL which has one input and one output variable. I am wondering if it is possible to use stored procedure instead of a function? here is my SQL with function
Select rec_id, fname, lname, myfunction(id) 'Category'
from customer_t
I tried couple of variations with stored procedure but couldn't make it work. Stored procedure has one input and one output variables as well.
Thanks for your help.
I am using a function inside my TOracleDataSet SQL which has one input and one output variable. I am wondering if it is possible to use stored procedure instead of a function? here is my SQL with function
Select rec_id, fname, lname, myfunction(id) 'Category'
from customer_t
I tried couple of variations with stored procedure but couldn't make it work. Stored procedure has one input and one output variables as well.
Thanks for your help.