如何通过jdbc从数据流中将数据加载到postgresql中 我们将在内存中获取数据流或数组, 有没有方法将流数据加载到postgresql? 使用插入效率太高。
答案 0 :(得分:2)
您将要使用带有批量插入的预准备语句。查看页面:http://viralpatel.net/blogs/batch-insert-in-java-jdbc/,它描述了此方法的性能和安全性优势。以下代码来自该页面。
String sql = "insert into employee (name, city, phone) values (?, ?, ?)";
Connection connection = new getConnection();
PreparedStatement ps = connection.prepareStatement(sql);
final int batchSize = 1000;
int count = 0;
for (Employee employee: employees) {
ps.setString(1, employee.getName());
ps.setString(2, employee.getCity());
ps.setString(3, employee.getPhone());
ps.addBatch();
if(++count % batchSize == 0) {
ps.executeBatch();
}
}
ps.executeBatch(); // insert remaining records
ps.close();
connection.close();