Estou tentando compilar uma classe que faz ligacao com o um BD Mysql e não estou conseguido, já coloquei o mysql-connector-java-3.0.9-stable-bin.jar no diretório j2sdk1.4.0jrelibext e coloquei o arquivo no ClassPath mas todas as vezes que eu o javac aparece o mesmo erro porque???
Código
Class.forName("com.mysql.jdbc.Driver");
conn = DriverManager.getConnection(
"jdbc:mysql://localhost/Producao");
Erro
F:ProducaoCobrancasrcdbdao>javac GenericDAO.java
GenericDAO.java:17: unreported exception java.lang.ClassNotFoundException; must be caught or declared to be thrown
Class.forName(“com.mysql.jdbc.Driver”);
^
GenericDAO.java:19: unreported exception java.sql.SQLException; must be caught or declared to be thrown
conn = DriverManager.getConnection(
^
GenericDAO.java:26: unreported exception java.sql.SQLException; must be caught or declared to be thrown
conn.close();
^
3 errors

