2

在我当前的应用程序中,我使用的是 Hibernate + PostgreSQL。对于特定情况,我需要使用COPYpostgres 中可用的功能从 CSV 文件加载数据。有什么方法可以COPY使用 Hibernate。

Postgres version : 9.4
Hibernate version : 5.0.6
4

1 回答 1

4

基于@a-horse-with-no-name 评论,我将以下代码放在一起,因为session.doWork不推荐使用。

SessionFactory factory = HibernateUtil.getSessionFactory();
Session session = factory.openSession();
SessionImplementor sessImpl = (SessionImplementor) session;
Connection conn = null;
conn = sessImpl.getJdbcConnectionAccess().obtainConnection();
CopyManager copyManager = new CopyManager((BaseConnection) conn);
File tf =File.createTempFile("temp-file", "tmp"); 
String tempPath =tf.getParent();
File tempFile = new File(tempPath + File.separator + filename);
FileReader fileReader = new FileReader(tempFile);
copyManager.copyIn("copy testdata (col1, col2, col3) from  STDIN with csv", fileReader );

希望这对读者有所帮助。

于 2016-01-29T06:55:47.107 回答