Hey, so I get a Driver error when I try to connect to my local mysql db. My code is in a servlet as follows
Class.forName("com.mysql.jdbc.Driver").newInstance();
Connection con=null;
Statement smt=null;
con=DriverManager.getConnection("jdbc:mysql://localhost:3306/sql?user=webusr&password=pass");
Thanks
M