91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

java如何獲取數據庫數據

小億
122
2023-08-04 13:53:23
欄目: 編程語言

在Java中,可以使用JDBC(Java Database Connectivity)來連接和操作數據庫。以下是一個簡單的示例代碼,演示如何使用JDBC獲取數據庫數據:
```java
import java.sql.*;

public class DatabaseConnection {
   public static void main(String[] args) {
       Connection connection = null;
       Statement statement = null;
       ResultSet resultSet = null;

       try {
           // 1. 加載數據庫驅動
           Class.forName("com.mysql.cj.jdbc.Driver");

           // 2. 建立數據庫連接
           connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/mydatabase", "username", "password");

           // 3. 創建 Statement 對象
           statement = connection.createStatement();

           // 4. 執行 SQL 查詢
           String sql = "SELECT * FROM mytable";
           resultSet = statement.executeQuery(sql);

           // 5. 處理查詢結果
           while (resultSet.next()) {
               int id = resultSet.getInt("id");
               String name = resultSet.getString("name");
               int age = resultSet.getInt("age");

               System.out.println("ID: " + id + ", Name: " + name + ", Age: " + age);
           }
       } catch (ClassNotFoundException e) {
           e.printStackTrace();
       } catch (SQLException e) {
           e.printStackTrace();
       } finally {
           // 6. 關閉數據庫連接和資源
           try {
               if (resultSet != null) {
                   resultSet.close();
               }
               if (statement != null) {
                   statement.close();
               }
               if (connection != null) {
                   connection.close();
               }
           } catch (SQLException e) {
               e.printStackTrace();
           }
       }
   }
}
```
在這個示例中,首先需要加載數據庫驅動,然后建立數據庫連接。接下來,創建一個 Statement 對象,使用該對象執行 SQL 查詢。查詢結果返回的是一個 ResultSet 對象,可以使用 `next()` 方法逐行遍歷結果集,并使用 `getXxx()` 方法獲取具體的數據。最后,記得關閉數據庫連接和釋放資源。
請注意,上述代碼中的數據庫連接 URL、用戶名和密碼需要根據實際情況進行修改。

0
新田县| 平利县| 巴马| 望奎县| 铁岭县| 寻甸| 泌阳县| 长乐市| 潍坊市| 长岭县| 扬中市| 鹤庆县| 汪清县| 日喀则市| 竹溪县| 望谟县| 德清县| 南宁市| 石柱| 甘南县| 赤壁市| 达州市| 滦平县| 武乡县| 兰西县| 海门市| 夏津县| 河池市| 宁陵县| 岳阳市| 新沂市| 迁西县| 伽师县| 叙永县| 贵港市| 无为县| 娄烦县| 辛集市| 开阳县| 杭州市| 广河县|