Olá estou com uma duvida, esse é um codigo para puxar algum dado cadastrado com a matricula tal, mas
nao mostra nenhum erro no netbeans alguem poderia me ajudar?
obrigado
try{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
String db = "jdbc:odbc:Driver=Microsoft Access Driver (*.mdb, *.accdb);DBQ=C:/Users/Douglas/Documents/Bancos de dados -ACCSESS/Projeto01.accdb";
Connection cn = DriverManager.getConnection(db,"","");
java.sql.Statement s = cn.createStatement();
String sql = ("Select Matricula, Nome, Idade, Telefone, Curso, Sexo FROM tabela_aluno WHERE matricula = " + matricula.getText());
ResultSet rs = s.executeQuery(sql);
rs.first();
int gMatricula = rs.getInt("Matricula");
String gNome = rs.getString("Nome");
int gIdade = rs.getInt("Idade");
int gTelefone = rs.getInt("Telefone");
String gCurso = rs.getString("Curso");
String gsexu = rs.getString("Sexo");
matricula.setText(String.valueOf(gMatricula));
nome.setText(gNome);
idade.setText(String.valueOf(gIdade));
telefone.setText(String.valueOf(gTelefone));
curso.setText (gCurso);
sexu.setText (gsexu);
showMessageDialog(null, sql);
s.executeUpdate(sql);
showMessageDialog(rootPane, "FUNFO PORRA");
}catch(Exception ex){
showMessageDialog(null, "Deu erro" + ex);
}
}