luizpaulo 0 Denunciar post Postado Julho 22, 2004 Olá. Estou desenvolvendo um Projeto usando JSP com MySQL e não estou conseguindo me conectar ao banco. Aparece o Erro: org.gjt.mm.mysql.Driver.Estou usando o script:Class.forName("org.gjt.mm.mysql.Driver"); Connection conexao = DriverManager.getConnection("jdbc:mysql:\\localhost:meubd","usuario","senha"); java.sql.Statement consulta = conexao.createStatement();Agradeço desde já pela ajuda e atenção.LuizTeresina-PI :) Compartilhar este post Link para o post Compartilhar em outros sites
Menra 0 Denunciar post Postado Julho 22, 2004 Olha, faz um tempão que eu não trabalho com jsp e você passou só alguns pedaços do código... Mas te mando esse exemplo q encontrei no site www.portaljava.com. Tomara que te ajude: <%@ page language="java" import="java.sql.*" errorPage="" %> <% int limitePorPagina = 5; String pr1 = request.getParameter( "pr" ); try{ Class.forName( "com.mysql.jdbc.Driver" ).newInstance(); } catch( Exception ex ){ out.write( "Não carregou o Driver: " + ex.toString() ); } Connection conn = DriverManager.getConnection( "jdbc:mysql://10.155.251.9/cdrom?user=root&pass=" ); PreparedStatement pstmt = conn.prepareStatement( "SELECT * FROM responsavel LIMIT " + pr1 + "," + String.valueOf( limitePorPagina )); PreparedStatement pstmt2 = conn.prepareStatement( "SELECT count(*) as c FROM responsavel" ); ResultSet resultado = pstmt.executeQuery(); ResultSet rs2 = pstmt2.executeQuery(); rs2.next(); int totalregs = Integer.parseInt( rs2.getString( "c" ) ); int totalpgs = Math.round( totalregs / limitePorPagina ); if( ( totalregs % limitePorPagina ) > 0 ) totalpgs++; int pr = Integer.parseInt( request.getParameter( "pr" ) ); %> <% while( resultado.next() ){ String id = resultado.getString( "id_responsavel" ); String nm = resultado.getString( "nm_resp" ); String mail = resultado.getString( "email_resp" ); %> <%=id%>| <%=nm%>| <%=mail%><br> <% } %> <% if( pr > 0 ){ %> [<a href="?pr=0">Primeira Página</a>] [<a href="?pr=<%=pr-limitePorPagina%>">Anteriores</a>] <% } %> <% if( pr < ( totalpgs * limitePorPagina ) - limitePorPagina ){ %> [<a href="?pr=<%=pr+limitePorPagina%>">Próximo</a>] [<a href="?pr=<%=( totalpgs * limitePorPagina ) - limitePorPagina%>"> Ultima</a>] <% } %> por Wendell Miranda http://www.portaljava.com/home/modules.php...article&sid=353 Compartilhar este post Link para o post Compartilhar em outros sites