dp901
dp901

Reputation: 95

Postgresql multi-row insert using command parameters

I need to insert large amounts of data into postgresql using multi-row inserts.

I am currently doing this by constructing the sql query using a stringbuilder and appending the values but I was wondering if there is a way to use commands and command parameters instead?

Upvotes: 3

Views: 3013

Answers (1)

Andriy Kizym
Andriy Kizym

Reputation: 1796

Here is good copy guide for inserting big amount of data.
Here is good answer for similar question

Upvotes: 2

Related Questions