Estou tentando conectar o banco e está dando esse erro: "java.sql.SQLException: No suitable driver found for jdbc:mysql://localhost/cartorio"
segue o códgo que estou usado.
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
// TODO Auto-generated method stub
try {
Connection c = new Conection().getCon();
nascimentoDAO nDao = new nascimentoDAO();
ResultSet rs = nDao.selecionaTudo(c);
req.setAttribute("nascimentos", "123");
RequestDispatcher dispatcher = req
.getRequestDispatcher("/listagem.jsp");
dispatcher.forward(req, resp);
} catch (Exception e) {
// TODO: handle exception
}
}
quando eu estava usando em uma classe de teste com o metodo main estava rodando normalmente.