1. 程式人生 > >Java連線MySQL查詢資料

Java連線MySQL查詢資料

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Scanner;


public class test {


// TODO Auto-generated method stub
static final String JDBC_DRIVER = "com.mysql.jdbc.Driver";  
    static final String DB_URL = "jdbc:mysql://192.168.9.2:3306/beautifybreast";//連線資料庫
 
    // 資料庫的使用者名稱與密碼,需要根據自己的設定
    static final String USER = "root";
    static final String PASS = "admin";
 
    public static void main(String[] args) {
        Connection conn = null;//設定conn全域性變數
        Statement stmt = null;//設定stmt全域性變數
        try{
            // 註冊 JDBC 驅動
            Class.forName("com.mysql.jdbc.Driver");
        
            // 開啟連結
            System.out.println("連線資料庫...");
            conn = DriverManager.getConnection(DB_URL,USER,PASS);
        
            // 執行查詢
            System.out.println(" 例項化Statement物件...");
            stmt = conn.createStatement();//例項化Statement物件,用stmt接收
            String sql;//定義一個string型別的資料變數sql
            sql = "SELECT id, name, url FROM test";//用sql接收資料庫語句
            ResultSet rs = stmt.executeQuery(sql);//執行sql
        
            // 展開結果集資料庫
            while(rs.next()){
                // 通過欄位檢索
                int id  = rs.getInt("id");
                String name = rs.getString("name");
                String url = rs.getString("url");
    
                // 輸出資料
                System.out.print("ID: " + id);
                System.out.print(", 站點名稱: " + name);
                System.out.print(", 站點 URL: " + url);
                System.out.print("\n");
            }
            // 完成後關閉
            rs.close();
            stmt.close();
            conn.close();
        }catch(SQLException se){
            // 處理 JDBC 錯誤
            se.printStackTrace();
        }catch(Exception e){
            // 處理 Class.forName 錯誤
            e.printStackTrace();
        }finally{
            // 關閉資源
            try{
                if(stmt!=null) stmt.close();
            }catch(SQLException se2){
            }// 什麼都不做
            try{
                if(conn!=null) conn.close();
            }catch(SQLException se){
                se.printStackTrace();
            }
        }
        System.out.println("Goodbye!");
    }
}