MySQL JDBC是Java程序訪問MySQL數據庫的一種常用方式。通過JDBC,Java程序可以與MySQL數據庫進行交互,包括連接MySQL數據庫、執行SQL語句、獲取查詢結果等。
下面是一個簡單的MySQL JDBC實例:
import java.sql.*; public class Main { static final String JDBC_DRIVER = "com.mysql.jdbc.Driver"; static final String DB_URL = "jdbc:mysql://localhost:3306/testdb?useSSL=false&serverTimezone=UTC"; static final String USER = "root"; static final String PASS = "123456"; public static void main(String[] args) { Connection conn = null; Statement stmt = null; try{ //注冊JDBC驅動 Class.forName(JDBC_DRIVER); //打開連接 conn = DriverManager.getConnection(DB_URL,USER,PASS); //執行查詢 stmt = conn.createStatement(); String sql = "SELECT id, name, age FROM people"; ResultSet rs = stmt.executeQuery(sql); //處理查詢結果 while(rs.next()){ int id = rs.getInt("id"); String name = rs.getString("name"); int age = rs.getInt("age"); System.out.print("ID: " + id); System.out.print(", Name: " + name); System.out.println(", Age: " + age); } //關閉資源 rs.close(); stmt.close(); conn.close(); }catch(SQLException se){ se.printStackTrace(); }catch(Exception e){ e.printStackTrace(); }finally{ try{ if(stmt!=null) stmt.close(); }catch(SQLException se2){ } try{ if(conn!=null) conn.close(); }catch(SQLException se){ se.printStackTrace(); } } } }
以上代碼中,首先定義了MySQL數據庫的驅動程序類名和連接信息,然后注冊JDBC驅動程序,打開連接,執行SQL查詢,處理查詢結果以及關閉資源。可以看到,整個過程非常簡單,但需要注意的是,在使用MySQL JDBC的過程中需要注意事務處理和防止SQL注入等安全問題。