package pack;
import java.sql.*;
import javax.swing.JOptionPane;
public class Banco {
public Statement stm;
public ResultSet rs;
public Connection conn;
public String Driver = "com.mysql.jdbc.Driver";
public void Conecta(){
System.setProperty("jdbc.Drivers", Driver);
try {
conn = DriverManager.getConnection("jdbc:mysql:meu_caminho", "meu_login", "minha_senha");
JOptionPane.showMessageDialog(null, "Conectado!");
} catch (SQLException e) {
JOptionPane.showMessageDialog(null, "Erro!" + "\n" + e.getMessage());
}
}
public void Desconecta(){
try {
conn.close();
} catch (SQLException e) {
JOptionPane.showMessageDialog(null, "Erro ao fechar!");
}
}
}
The problem is that it gives the error "No suitable driver found for my_path"
The solution that everyone says is that I have to put the jdbc driver in my project, I tried to download the mysql site itself the java connector, however it is an msi file, and what all the tutorials say is to put .jar, but I can not find this jar at all, the only one I found was a 4shared link, a version 5.1.13 in .jar, but even after I add the library, the same error continues .. .
Does anyone know where I can get this .jar?