Hi,
We have a simple
java application (no framework) which is deployed as EAR on weblogic. I have created the MSSQL datasource in weblogic for the access.
Now the requirement is to use oracle DB instead of MSSQL. I am able deploy the oracle connection in weblogic and tested successfully. But through Java side I am not sure what are the steps I need to make changes so that I can connect to oracle database.
I have class called DAOFactory which basically connects MSSQL as shown below:
private static
String Application_POOL_NAME = "weblogic.jdbc.jts.ApplicationPool"; //JNDI
Do I need to change the above corresponding to oracle jndi name? Do I need to include any jars with respect to above operation?
Please provide me the guidelines so that I can follow it.
Thanks in advance
Nagaraj