I have a problem whith my query sql in OracleDataAdpater with my API.
Working in my API: select * from table where colum = :value
Not Working error ORA-01008: not all variables bound:
select * from table where colum = &value
I need because my final query should be with IN becasuse =: is not working to list values
select * from table where colum IN( &value)
Final query: select * from table where colum IN('001','002','003');
Thanks
INworks with individual values, not an array of values.Oracle parameter names start with:, not&`. Changing that prefix won't change the parameter typeINwith a data source like a table or array. That expression is specifically used to specify that a field is equal to one of the supplied values. Reading data from a set is done usingFROMandSELECT