I am trying to perform a select operation on my oracle db. I have kept my queries in a property file in my application which is as follows:
SELECT EMPLOYEE FROM EMPLOYEETABLE WHERE
JOINING_DATETIME >= ?
The JOINING_DATETIME is a timestamp column in oracle db and its value looks like 04-03-20 07:12:27.150000000 PM
I am supplying the value for JOINING_DATETIME as a String from my application like 04-03-20 05:41:52 PM and it works very well and do the necessary as expected while running in Tomcat servers.
But the problem is when the same has been deployed into Weblogic application I'm getting the error:
java.sql.SQLDataException: ORA-01843: not a valid month
Could someone please help me out with this?