JDBC連接MySQL並實現模糊查詢

場景:

在學習JDBC的語言中,每次都執行通用的幾步:即註冊驅動,獲取連接,創建操作,處理結果,釋放資源 過於復雜,因此不妨將上述步驟封裝成工具類,隻對外提供方法!

描述:

這是不使用工具類的封裝寫出來的代碼,比較冗餘復雜

package com.zdx.JDBC;
 
import java.sql.*;
 
public class JAVA1129_5 {
    public static void main(String[] args) {
        //設置空對象,註冊驅動,獲取連接,創建操作,處理結果集,釋放資源
        String url = "jdbc:mysql://127.0.0.1:3306/hello";
        String username = "root";
        String password = "rota";
 
        String SQL = "insert into stu values(1,'zdx','nbnc'),(2,'cyc','qwq');";
//        String SQL1 = "update stu set sname ='xzq',major='bask' where sno = '1';";
        String SQL1="select * from stu";
        Connection connection = null;
        Statement statement = null;
        ResultSet resultset = null;
        try {
            Class.forName("com.mysql.jdbc.Driver");
            connection = DriverManager.getConnection(url, username, password);
            statement = connection.createStatement();
            int cnt = statement.executeUpdate(SQL);
            if (cnt != 0) {
                System.out.println("執行成功");
            }
            ResultSet result = statement.executeQuery(SQL1);
            while (result.next()) {
                //隨著光標移動對操作對象進行操作
                System.out.println("nbnb");
            }
 
        } catch (SQLException e) {
            e.printStackTrace();
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        }
 
        //釋放資源,必須在最後加上finally語句塊執行
        finally {
                if (resultset != null) {
                    try {
                        resultset.close();
                    } catch (SQLException throwables) {
                        throwables.printStackTrace();
                    }
                }
                if (statement != null) {
                    try {
                        statement.close();
                    } catch (SQLException throwables) {
                        throwables.printStackTrace();
                    }
                }
                if (connection != null) {
                    try {
                        connection.close();
                    } catch (SQLException throwables) {
                        throwables.printStackTrace();
                    }
                }
            }
        }
    }
 
 

解決方案:

首先類內的構造方法加私有修飾符,模仿Sun公司工具類,如Arrays類 和 Collection 。

其次註冊驅動,利用靜態代碼塊內隻註冊一次進行註冊驅動

然後獲取數據庫連接,返回數據庫連接對象的方法內有異常,不能catch,需要向外扔。

最後封裝一個關閉的方法。

註意由於封裝工具類,且對外隻提供方法因此都封裝成類方法(即static修飾)

package com.zdx.JDBC;
 
import java.sql.*;
 
//2021.11.2920點03分 對數據庫的工具類進行封裝
public class  DBUtil{
    private DBUtil(){}
    static{
        try {
            Class.forName("com.mysql.jdbc.Driver");
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        }
    }//利用靜態代碼塊在類加載時隻加載一次的特性註冊驅動。
 
    //獲取連接的方法
    public static Connection getConnection (String url,String user,String password)throws SQLException{
       return   DriverManager.getConnection(url,user,password);//這裡註意驅動管理類內調用的獲取連接方法返回對象就是connection對象。
    }
 
    //關閉資源
    //按照順序,結果集,數據庫操作對象,連接對象!
    public static void close(Connection connection,Statement ps,ResultSet resultSet){
 
        if(resultSet!=null){
            try {
                resultSet.close();
            } catch (SQLException throwables) {
                throwables.printStackTrace();
            }
        }
 
        if(ps!=null){
            try {
                ps.close();
            } catch (SQLException throwables) {
                throwables.printStackTrace();
            }
        }
 
        if(connection!=null){
            try {
                connection.close();
            } catch (SQLException throwables) {
                throwables.printStackTrace();
            }
        }
    }
 
}

 對工具類進行調用實現模糊查詢:

package com.zdx.JDBC;
 
import java.sql.*;
 
public class Main {
 
    public static void main(String[] args) {
 
        Connection connection = null;
        PreparedStatement ps = null;
        ResultSet resultSet = null;
        String url = "jdbc:mysql://127.0.0.1:3306/hello";
        String user = "root";
        String password = "rota";
        //獲取連接
        try {
            connection = DBUtil.getConnection(url, user, password);
        } catch (SQLException throwables) {
            throwables.printStackTrace();
        }
        //獲取預編譯的數據庫操作對象
        String SQL = "select sname from stu where sname like ?";
        try {
            ps = connection.prepareStatement(SQL);
            ps.setString(1, "_y%");
            resultSet = ps.executeQuery();
            while (resultSet.next()) {
                System.out.println(resultSet.getString("sname"));
            }
        } catch (SQLException throwables) {
            throwables.printStackTrace();
        }
 
 
        //釋放資源
        finally {
            DBUtil.close(connection, ps, resultSet);
        }
    }
}

到此這篇關於JDBC連接MySQL並實現模糊查詢的文章就介紹到這瞭。希望對大傢的學習有所幫助,也希望大傢多多支持WalkonNet。

推薦閱讀: