I am trying to access the database using
jdbc connection using the below code
public java.sql.Connection getConnection() {
try
{
Class.forName("COM.ibm.db2.jdbc.app.DB2Driver");
java.sql.Connection oCon=java.sql.DriverManager.getConnection("jdbc

b2:RABOOL","db2admin","db2admin");
return oCon;
}
catch(Exception ee)
{
System.out.println("Get Connection failed"+ee);
return null;
}
}
But this throws the exception
Root Error-1: SQLConnect
java.lang.UnsatisfiedLinkError: SQLConnect at COM.ibm.db2.jdbc.app.DB2Connection.(DB2Connection.java:255) at COM.ibm.db2.jdbc.app.DB2Driver.connect(DB2Driver.java:236) at java.sql.DriverManager.getConnection(DriverManager.java:479) at java.sql.DriverManager.getConnection(DriverManager.java:139) at D_0003a.WebSphere.AppServer.hosts.d_00025fault_0005fhost.live.web.faps.faps_TestSql_jsp_2.getConnection(faps_TestSql_jsp_2.java:31) at
What is the cause for the above problem?
Is there anything to change on DB2 part