-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConnectionFactory.java
58 lines (30 loc) · 1.03 KB
/
ConnectionFactory.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package util;
import java.sql.Connection;
import java.sql.DriverManager;
import javax.swing.JOptionPane;
public class ConnectionFactory {
public static Connection getConnection() throws Exception{
try {
DriverManager.registerDriver(new com.mysql.cj.jdbc.Driver());
Class.forName("com.mysql.cj.jdbc.Driver");
String url = "jdbc:mysql://localhost:3306/dbMuical";
String login ="root";
String senha = "";
return DriverManager.getConnection(url,login,senha);
}
catch (Exception erro) {
throw new Exception (erro.getMessage());
}
}
public static void main(String arg[]) {
try {
Connection conn = ConnectionFactory.getConnection();
/* mensagem no console e em um popup*/
JOptionPane.showMessageDialog(null,"Conectado");
System.out.print("Conectado");
}
catch (Exception erro) {
erro.printStackTrace();
}
}
}