public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("请选择您要输入的类型:"); System.out.println(" " + "a:身份证号"); System.out.println(" " + "b:准考证号"); String s = sc.next(); Connection conn = null; try { Class.forName("oracle.jdbc.OracleDriver"); String url = "jdbc:oracle:thin:@localhost:1521:ORCL"; conn = DriverManager.getConnection(url, "test1", "574004"); System.out.println("连接数据库成功"); Statement st = conn.createStatement(); if (s.equals("a")) { System.out.println("请输入身份证号:"); String ID = sc.next(); String IDCard = "select * from EXAMSTUDENT t where idcard=" + ID; ResultSet rs = st.executeQuery(IDCard); if (ID != "select idcard from EXAMSTUDENT t ") { System.out.println("您输入有误,请重新进入程序......"); } while (rs.next()) { String fl = rs.getString(1); String ty = rs.getString(2); String id = rs.getString(3); String ex = rs.getString(4); String stu = rs.getString(5); String lo = rs.getString(6); String ga = rs.getString(7); System.out.println("flowid=" + fl + ",type=" + ty + ",idcard=" + id + ",examcard=" + ex + ",姓名:" + stu + ",籍贯:" + lo + ",分数:" + ga); } System.out.println("请输入学生的考号:"); String id = sc.next(); st.execute("delete from examstudent t where t.examcard = "+id); System.out.println("删除成功");
时间: 2024-10-13 11:57:09