建立連線

為了能夠使用 JDBC,你需要在應用程式的類路徑上擁有資料庫的 JDBC 驅動程式。

有多種方法可以連線到資料庫,但常見的方法是使用 java.sql.DriverManager ,或者配置和使用 javax.sql.DataSource 的資料庫特定實現。

使用 url jdbc:somedb://localhost/foobar 建立與資料庫的連線並執行更新語句以向所有員工提高 5%的簡單示例:

try (Connection connection = DriverManager.getConnection(
        "jdbc:somedb://localhost/foobar", "anna", "supersecretpassword");
     Statement updateStatement = connection.createStatement()) {
    
    updateStatement.executeUpdate("update employees set salary = salary * 1.05");
}

有關更多詳細資訊,請參閱建立資料庫連