You are on page 1of 1

public class CriaConexao {

public static Connection getconexao() throws SQLException {


try {
Class.forName("com.mysql.jdbc.Driver");
System.out.println("Conectando ao Banco");
return DriverManager.getConnection("jdbc:mysql://localhost/agendabd"
, "root", "fabrizio");
} catch (ClassNotFoundException e) {
throw new SQLException(e.getMessage());
}
}
}

You might also like