我是靠谱客的博主 搞怪悟空,最近开发中收集的这篇文章主要介绍JDBC的实现(用Preparestatement对象操作) 并解决Loading class `com.mysql.jdbc.Driver'. This is deprecated.,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
启动时报错:Loading class com.mysql.jdbc.Driver'. This is deprecated. The new driver class is
com.mysql.cj.jdbc.Driver’.
解决办法
:
原因:数据库更新后 驱动的名字改变,所以要用最新的驱动来连接;
代码如下:
使用prepareStatement的安全性更高 ,可以防止SQL注入的问题:
import java.sql.*;
public class JDBC {
public static void main(String[] args) throws ClassNotFoundException, SQLException {
String url="jdbc:mysql://127.0.0.1:3306/school?useSSL=false&useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2B8";
String username="root";
String password="root";
Connection connection=null;
PreparedStatement statement=null;
ResultSet rs=null;
Class.forName("com.mysql.cj.jdbc.Driver");
//1:连接数据库驱动
connection = DriverManager.getConnection(url,username,password);
//2:获取连接对象
String sql="insert into student values(?,?,?,?,?,?,?,?)";
//3: 获取执行数据库对象
statement = connection.prepareStatement(sql);
//4:执行sql语句
statement.setInt(1,23);
statement.setString(2, "goi");
statement.setString(3, "1234567");
statement.setString(4, "g");
statement.setString(5, "2000-4-5");
statement.setString(6, "成都");
statement.setString(7, "2511224124@qq.com");
statement.setString(8, "lisan");
//5:返回结果集
int i = statement.executeUpdate();
if(i>=0)
{
System.out.println("执行插入成功");
}
else{
System.out.println("插入失败");
}
//6:释放资源
if(statement!=null)
{
statement.close();
}
if(connection!=null)
{
connection.close();
}
}
}
特别注意:
String url=“jdbc:mysql://127.0.0.1:3306/school?useSSL=false&useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2B8”;
这一段话很重要 要设置他的字符编码与时区时间,防止在链接的时候就会报错;
只用背下来这几个步骤:
1:用class.fornam链接数据库驱动,在其之前一定要保证导入了MYSQL的JAR包
,idea中可以使用创建MAVEN项目自动导入
2:创建链接 使用DriverManager来创建得到connection的对象
3:通过connection可以创建出可以执行sql语句的statement对象,安全性的原因,所以最好使用预处理的方式,
4:将SQL语句写进去之后,通过这个对象调用增删改查的对应的方法,并且返回相应的值
5:成功之后,要将使用过的对象进行关闭就好了。
最后
以上就是搞怪悟空为你收集整理的JDBC的实现(用Preparestatement对象操作) 并解决Loading class `com.mysql.jdbc.Driver'. This is deprecated.的全部内容,希望文章能够帮你解决JDBC的实现(用Preparestatement对象操作) 并解决Loading class `com.mysql.jdbc.Driver'. This is deprecated.所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复