如何使用Connection对象连接数据库

2024-11-23 14:57:44
推荐回答(1个)
回答1:

public static Connection getConn(){

Connection conn=null;

try {
Class.forName("com.mysql.jdbc.Driver");
String url ="jdbc:mysql://localhost:3306/all?"
+ "user=root&password=root";
conn = DriverManager.getConnection(url);
} catch (ClassNotFoundException e) {
System.out.println("driver not found");
} catch (SQLException e) {
System.out.println("connection error");
}
return conn;
}