public UserDB() {
try {
Class.forName("com.mysql.jdbc.Driver");
con = DriverManager.getConnection("jdbc:mysql://localhost:3306/ss","root","root");
} catch (Exception e) {
System.out.println("GetConnection"+e);
}
}
Popular Technology Articles
| ||
0 comments