I\'m using JDBC for very simple database connectivity.
I have created my connection/statement and executed a query. I check the query object of the statement in the
in my case the query which worked in sql developer didn't work in JAVA.
*select * from table where process_date like '2014-08-06%'* (worked in sql developer)
formating process_date to char helped to make it work in JAVA
*select * from table where to_char(process_date) = '06-AUG-14'*