JDBC的CRUD操作之查詢操作

1.1.1 查詢多條記錄

@Test

        /**

         * 查詢多條記錄

         */

        public void demo4(){

                Connection conn = null;

                Statement stmt = null;

                ResultSet rs = null;

                try{

                        // 註冊驅動

                        Class.forName("com.mysql.jdbc.Driver");

                        // 獲得連接

                        conn = DriverManager.getConnection("jdbc:mysql:///web_test3", "root", "abc");

                        // 執行操作

                        // 創建執行SQL語句的對象:

                        stmt = conn.createStatement();

                        // 編寫SQL:

                        String sql = "select * from user";

                        // 執行SQL:

                        rs = stmt.executeQuery(sql);

                        // 遍歷結果集:

                        while(rs.next()){

                                System.out.println(rs.getInt("id")+" "+rs.getString("username")+" "+rs.getString("password"));

                        }

                }catch(Exception e){

                        e.printStackTrace();

                }finally{

                        // 資源釋放:

                        if(rs != null){

                                try {

                                        rs.close();

                                } catch (SQLException e) {

                                        e.printStackTrace();

                                }

                                 

                                rs = null;

                        }

                        if(stmt != null){

                                try {

                                        stmt.close();

                                } catch (SQLException e) {

                                        e.printStackTrace();

                                }

                                 

                                stmt = null;

                        }

                        if(conn != null){

                                try {

                                        conn.close();

                                } catch (SQLException e) {

                                        e.printStackTrace();

                                }

                                conn = null;

                        }

                }

        }

1.1.2 查詢一條記錄

@Test

        /**

         * 查詢一條記錄

         */

        public void demo5(){

                Connection conn = null;

                Statement stmt = null;

                ResultSet rs = null;

                try{

                        // 註冊驅動

                        Class.forName("com.mysql.jdbc.Driver");

                        // 獲得連接

                        conn = DriverManager.getConnection("jdbc:mysql:///web_test3", "root", "abc");

                        // 執行SQL

                        // 創建執行SQL語句對象:

                        stmt = conn.createStatement();

                        // 編寫SQL:

                        String sql = "select * from user where id = 4";

                        rs = stmt.executeQuery(sql);

                        // 判斷就可以:

                        if(rs.next()){

                                System.out.println(rs.getInt("id")+" "+rs.getString("username")+" "+rs.getString("password"));

                        }

                }catch(Exception e){

                        e.printStackTrace();

                }finally{

                        // 資源釋放:

                        if(rs != null){

                                try {

                                        rs.close();

                                } catch (SQLException e) {

                                        e.printStackTrace();

                                }

                                 

                                rs = null;

                        }

                        if(stmt != null){

                                try {

                                        stmt.close();

                                } catch (SQLException e) {

                                        e.printStackTrace();

                                }

                                 

                                stmt = null;

                        }

                        if(conn != null){

                                try {

                                        conn.close();

                                } catch (SQLException e) {

                                        e.printStackTrace();

                                }

                                conn = null;

                        }

                }

        }
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章