Hi,
I am using weblogic 5.1 Server. I have created one demoPool for orcle database. Using demoDataSource i can able to access the demoPool. But I want to get the connection object as
java.sql.Connection con= ds.getConnection(
String userID, String passWord) instead of con=ds.getConnection. How i can do it.
If i use con= ds.getConnection("test","test123");
it throws java.sql.SQLException: getConnection(user,password) not implemented
Please help me to find out the solution.
Thanks & Regards,
M.S.Raman.
-----------------------------------------------------
My WebLogic Properties file:
weblogic.jdbc.connectionPool.demoPool=\
url=jdbc

racle:thin:@172.24.3.92:1521:xxxx,\
driver=oracle.jdbc.driver.OracleDriver,\
initialCapacity=1,\
maxCapacity=2,\
capacityIncrement=1,\
props=user=test;password=test123
weblogic.jdbc.DataSource.demoDataSource=demoPool