码迷,mamicode.com
首页 > 数据库 > 详细

jdbc 删除数据练习

时间:2016-06-22 10:57:24      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:

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("删除成功");

技术分享

技术分享

jdbc 删除数据练习

标签:

原文地址:http://www.cnblogs.com/zhailiming/p/5606168.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!