does postgresql jdbc driver has \copy?

前端 未结 2 1346

as stated,

does java jdbc driver for postgresql has client side \\copy?

I wanted to do batch inserts into a table in the database on a remote machine with d

相关标签:
2条回答
  • 2021-01-13 04:41

    Since the 8.4 driver there is support for the COPY command, through the CopyManager:

    http://jdbc.postgresql.org/documentation/publicapi/org/postgresql/copy/CopyManager.html

    0 讨论(0)
  • 2021-01-13 04:53

    add ip of your system from where you used to update database in pg_hba.conf file connect usinyg url

    jdbc:postgresql://host:port/database
    

    execute query

    0 讨论(0)
提交回复
热议问题