创建连接
为了能够使用 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");
}
有关更多详细信息,请参阅创建数据库连