Hello,
I want to use a query like:
select * from table where id in (1,2,3)
but then with a parameter for the in-set.
select * from table where id in (:test)
or
select * from table where id in :test
how do i assign the variable?
can you give me a sample?
do i have to use a TOracleObject?