Hi,
I am using PreparedStatement and my query is like this:
Select all_dest, city_type from TableA
where city_type in (?) " ;
In the PreparedStatement, I am using a String to provide value for city_type
pstmt.setString(1, strCityType);
Now this strCityType has value = 'I', 'T', 'A';
On...