package test02;
import Utils.JDBCUtils;
import org.junit.Test;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
public class DeptOper {
//全查dept表中的字段 最终显示出来
public List<Dept>findAll(){
List<Dept> list= new ArrayList<>();
try{
//获取数据库的连接
Connection connection = JDBCUtils.getConnection();
//编写查询语句
String sql="select*from dept";
//预编译
PreparedStatement ps = connection.prepareStatement(sql);
//进行查询
ResultSet rs = ps.executeQuery();
//遍历rs
while(rs.next()){
//每读取一条记录,就会创建一个dept对象
int id=rs.getInt("id");
String dname= rs.getNString("dname");
String loc= rs.getNString("loc");
//将查询的结果保存在dept对象中
Dept dept = new Dept();
dept.setId(id);
dept.setDname(dname);
dept.setLoc(loc);
//将对象保存在list集合中
list.add(dept);
}
JDBCUtils.close(connection,ps,rs);
} catch (SQLException throwables) {
throwables.printStackTrace();
}
return list;
}
//根据id查询部门 说明每次返回一个对象
public Dept findById(int deptno){
//将查询出的结果保存在dept对象中
Dept dept = new Dept();
try{
//获取数据库的连接
Connection connection = JDBCUtils.getConnection();
//编写查询语句
String sql="select*from dept where id=?";
//进行预编译
PreparedStatement ps = connection.prepareStatement(sql);
//传递参数
ps.setInt(1,deptno);
//执行查询
ResultSet rs = ps.executeQuery();
//遍历rs
while(rs.next()){
//没读取一条记录,就会创建一个dept对象
int id=rs.getInt("id");
String dname= rs.getString("dname");
String loc= rs.getString("loc");
dept.setId(id);
dept.setDname(dname);
dept.setLoc(loc);
}
JDBCUtils.close(connection,ps,rs);
} catch (SQLException throwables) {
throwables.printStackTrace();
}
return dept;
}
//编写修改的方法 修改
public int update(int deptno,String deptname){
int i=0;
try{
//获取数据库的连接
Connection connection = JDBCUtils.getConnection();
//编写查询语句
String sql="update dept set dname=? where id=?";
//进行预编译
PreparedStatement ps = connection.prepareStatement(sql);
//传递参数
ps.setString(1,deptname);
ps.setInt(2,deptno);
i=ps.executeUpdate();
} catch (SQLException throwables) {
throwables.printStackTrace();
}
return i;
}
//删除
//插入
//单元测试: 在测试方法时可以避免不用写主方法
//要求:1.测试的方法不能有返回值 2.测试的方法不能有参数 3.需要在方法上加上list注解
@Test
public void testFindAll(){
/*List<Dept> all=findAll();*/
int i=delete(30,"摆烂部");
System.out.println(i);
}
}
其实就是这个图片,用idea实现改mysql插入和 删除 。然后刚刚geigei说的那个我也试过,但是感觉还是有点问题,仍然运行不出来。可否劳烦一下帮忙看一下怎么写嘛。是真的不知道改什么地方了qwq
|