标题 java JDBC链接MySql数据库
**//先创建一个公共的连接数据库的JDBC类**
public class BaseDao{
**//封装url User是要连接的数据名**
private static final String url=" jdbc:mysql://localhost:3306/User";
**//要连接的数据库的用户名**
private static final String root="root";
**//要链接的数据库的密码 我没有密码就赋一个空值**
private staitc final String pwd="";
**//封装一个Connection对象 需要导入一个java.sql.Connection的对象**
private static Connection con=null;
static{
try {
Class.forName("com.mysql.jdbc.Driver");
con=DriverManager.getConnection(Url,root,pwd);
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
**//创建一个方法getConnection调用JDBC**
public static Connection gerConnection{
return con;
}
}
//有什么注释不对的 欢迎在评论区留言
转载:https://blog.csdn.net/weixin_44517927/article/details/101290675
查看评论