org.postgresql.util.PSQLException: Cannot commit when autoCommit is enabled.
报错原因是因为JDBC连接数据库导入数据时添加了commit
查询后发现pgsql总是自动将其所有操作当作一个事务,语句执行完自动提交
去掉connection.commit后不会报错并且数据正常进库
关闭自动提交事务的方法:\set autocommit off
org.postgresql.util.PSQLException: Cannot commit when autoCommit is enabled.
报错原因是因为JDBC连接数据库导入数据时添加了commit
查询后发现pgsql总是自动将其所有操作当作一个事务,语句执行完自动提交
去掉connection.commit后不会报错并且数据正常进库
关闭自动提交事务的方法:\set autocommit off