JDBC链接mysql

从官网下载的jar包

链接:https://pan.baidu.com/s/1kqgoSRSalfM13PcwKzgPzA
提取码:mtra

image.png

将其粘贴到lib下



在build path中配置

public class Demo {

    public static void main(String[] args) throws Exception {
        Class.forName("com.mysql.cj.jdbc.Driver");
        Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/mydb1?serverTimezone=GMT%2B8", "root", "xxx");//xxx为你的数据库密码
        System.out.println(con );
    }

}

使用forName导入类,注意url为jdbc:mysql://localhost:3306/mydb1?serverTimezone=GMT%2B8
mydb1为自己的数据库名称
新版本需要在后面加上时区信息,即serverTimezone=GMT%2B8

image.png

后台打印出地址信息表明成功连接数据库。

你可能感兴趣的:(JDBC链接mysql)