Boa noite pessoa,
fiz uma aplicação teste e utilizei um servidor mysql em local host, com o wampserver, agora criei uma conta para testes no site db4free, mas não encontrei nenhum tutorial na internet de como fazer isso, sou iniciante mas entendo rapido as coisas. alguém pode me indicar alguma video aula que ensine ou consiga me mostrar como devo fazer isso ?
mostra o código e a url do seu banco
public class ConnectionFactory {
private static final String DRIVER = "com.mysql.jdbc.Driver";
private static final String URL = "jdbc:mysql://db4free.net:3306/texian";
private static final String USER = "meubanco";
private static final String PASS = "minha senha";
public static Connection getConnection(){
try {
Class.forName(DRIVER);
//AQUI ESTÁ DIFERENTE DA VIDEO AULA
return (Connection) DriverManager.getConnection(URL, USER, PASS);
} catch (ClassNotFoundException | SQLException ex) {
throw new RuntimeException("Erro na conexão:",ex);
}
}
public static void closeConnetion(Connection con){
try {
if(con!=null){
con.close();
}
} catch (SQLException ex) {
Logger.getLogger(ConnectionFactory.class.getName()).log(Level.SEVERE, null, ex);
}
}
public static void closeConnetion(Connection con,PreparedStatement stmt){
closeConnetion(con);
try {
if(stmt!=null){
stmt.close();
}
} catch (SQLException ex) {
Logger.getLogger(ConnectionFactory.class.getName()).log(Level.SEVERE, null, ex);
}
}
public static void closeConnetion(Connection con,PreparedStatement stmt,ResultSet rs){
closeConnetion(con,stmt);
try {
if(rs!=null){
rs.close();
}
} catch (SQLException ex) {
Logger.getLogger(ConnectionFactory.class.getName()).log(Level.SEVERE, null, ex);
}
}
public static void closeConnection(java.sql.Connection con, PreparedStatement stmt, ResultSet rs) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
}