使用JDBC连接数据库,进行查询操作

  • Post author:
  • Post category:其他


1.

先用创建数据库并插入数据

2.

在IDEA中创建实体类:类的名字对应数据库表的名字、类的属 性对应表的字段


(IDEA自动构造代码快捷键: alt + insert)


3.开始进行JDBC的增删改查操作

3

.1* JDBC连接数据库,需要配置四大参数,同时需要导入数据库对应的驱动包

private String driver="com.mysql.jdbc.Driver";
private String url="jdbc:mysql://localhost:3306/databaseName?useSSL=false&serverTimezone=UTC";
private String username="root";
private String password="123456";


3.2JDBC操作数据库的步骤 :1.首先在项目根目录创建lib文件夹,放入jdbc驱动程序,然后Add As Library

3

.加载数据库驱动,使用反射加载


1使用驱动管理器来获得连接——获得一个数据库连接对象Connection


2使用Connection创建PreparedStatement预处理对象,使用PreparedStatement来执行sql语句


3.操作判断——增删改返回的是影响的行数(返回值是int),只有查询获得结果集(返回值是ResultSet)


4回收资源


5.具体代码如下

Class.forName(driver);
//3.使用驱动管理器来获得连接---获得一个数据库连接对象Connection
Connection con=DriverManager.getConnection(url, username, password); //
String sql="select * from student";
PreparedStatement pstm = con.prepareStatement(sql);
ResultSet rs = pstm.executeQuery();
List<Student> studentList=new ArrayList<>();
while(rs.next()){
//根据字段名称获取表中的数据
int stuId=rs.getInt("stuId");
String stuName=rs.getString("stuName");
String stuSex=rs.getString("stuSex");
int stuAge=rs.getInt("stuAge");
String stuAddr=rs.getString("stuAddr");
2 JDBC的添加操作
//把以上数据封装到Student对象中
Student student=new Student(); 
student.setStuId(stuId);
student.setStuName(stuName);
student.setStuSex(stuSex);
student.setStuAge(stuAge);
student.setStuAddr(stuAddr);
//把当前行封装后的Student对象装载到 List集合中
studentList.add(student);
}
System.out.println(studentList);
//7.回收资源,
if(rs!=null){
rs.close();
}
if(pstm!=null){
pstm.close();
}
if(con!=null){
con.close();
}
}



版权声明:本文为weixin_68946227原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。