Could not create connection to database server解决方法

在使用java连接数据库JDBC时,报错Could not create connection to database server。

问题原因:

mysql版本与下载的mysql-connector的jar包版本不一致。

解决方法:

下载与mysql版本匹配的jar包。

1.查看mysql版本号:

Could not create connection to database server解决方法_第1张图片

 

2.下载网址:MySQL :: Download MySQL Connector/J (Archived Versions)

Could not create connection to database server解决方法_第2张图片

 解压后将jar包放入项目下的lib文件夹,并右键选择Add as a library。

Could not create connection to database server解决方法_第3张图片

 

 

你可能感兴趣的:(数据库,mysql,java)