使用JDBC向PostgreSQL中的表添加数据的正确方法如下:
String url = "jdbc:postgresql://localhost:5432/mydatabase";
String username = "myusername";
String password = "mypassword";
Connection connection = DriverManager.getConnection(url, username, password);
String sql = "INSERT INTO mytable (column1, column2) VALUES (?, ?)";
PreparedStatement statement = connection.prepareStatement(sql);
statement.setString(1, "value1");
statement.setInt(2, 123);
int rowsAffected = statement.executeUpdate();
statement.close();
connection.close();
这样就完成了使用JDBC向PostgreSQL中的表添加数据的过程。
推荐的腾讯云相关产品:腾讯云数据库PostgreSQL。腾讯云数据库PostgreSQL是一种高度可扩展、高性能、高可靠性的关系型数据库服务,提供了全面兼容的PostgreSQL数据库引擎。您可以通过腾讯云控制台或API进行创建和管理。详情请参考腾讯云数据库PostgreSQL产品介绍:https://cloud.tencent.com/product/tcr
领取专属 10元无门槛券
手把手带您无忧上云