Hi, I am getting the following error while trying to connect to a DB2 database from WSAD. COM.ibm.db2.jdbc.DB2Exception: [IBM][JDBC Driver] CLI0637E QUERY cannot be found. My desktop is installed with WSAD411 and the DB2 version is 7 with Fix Pack 6.0. Here's the snippet of the code that is part of the servlet: ResultSet rs1 = stmt1.executeQuery("SET SCHEMA srvr1215"); String query = "select * from M_USER_PROFILE where USERID='"+name+"' and PASSWORD ='"+passwd+"'"; ResultSet rs2 = stmt2.executeQuery(query); while(rs.next()){checkUser = rs.getString(1);checkPass = rs.getString(2);} Please let me know if you have encounterend this error and what you did as a solution. Thanks in advance!