Re: How to speed-up inserts with jdbc - Mailing list pgsql-performance

From Steinar H. Gunderson
Subject Re: How to speed-up inserts with jdbc
Date
Msg-id 20041111100418.GA2116@uio.no
Whole thread Raw
In response to Re: How to speed-up inserts with jdbc  (Edwin Eyan Moragas <haaktu@gmail.com>)
Responses Re: How to speed-up inserts with jdbc
List pgsql-performance
On Thu, Nov 11, 2004 at 04:04:06PM +0800, Edwin Eyan Moragas wrote:
> how about using PreparedStatment? that's on the java end.
> on the pg end, maybe do a BEGIN before the for loop and
> END at the end of the for loop.

You don't even need a "BEGIN" and "END"; his code has a setAutoComit(true)
before the for loop, which just has to be changed to setAutoCommit(false)
(and add an explicit commit() after the for loop, of course).

/* Steinar */
--
Homepage: http://www.sesse.net/

pgsql-performance by date:

Previous
From: Gaetano Mendola
Date:
Subject: Re: seqscan strikes again
Next
From: Gaetano Mendola
Date:
Subject: Re: vacuum analyze slows sql query