开发者

does postgresql jdbc driver has \copy?

开发者 https://www.devze.com 2023-02-27 00:11 出处:网络
as stated, does java jdbc driver for postgresql开发者_StackOverflow中文版 has client side \\copy?

as stated,

does java jdbc driver for postgresql开发者_StackOverflow中文版 has client side \copy?

I wanted to do batch inserts into a table in the database on a remote machine with data from my text file on another machine.


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


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

精彩评论

暂无评论...
验证码 换一张
取 消