I want to insert multiple Rows in one shot to improve my performance .
From C# code I am using ADO .net to connect to postgres . Currently i am pasting the code which is not of postgres but in my dev environment similar things i am doing with Postgres.
Hi i have hilighted the line in which I wanted to ask doubts .
Currently i am inserting one row in one time and then executing the query . So with this approach i need to execute it many times for multiple rows insert because of this my database is poor in doing this each time for very large data.
What i want here is to insert multiple rows and then executing it in one time only so that it will be faster.