Taking advantage of prepared statement performance - Mailing list pgsql-jdbc

From Brett
Subject Taking advantage of prepared statement performance
Date
Msg-id 20021010173000.1186529A46@xmxpita.excite.com
Whole thread Raw
List pgsql-jdbc

I have a web application that invokes java jdbc code for each request. Would
it be faster if I stored all my prepared statements for each connection, so
when I want to do a query I a) pull a connection object from the pool then
b) call ps.setX; ps.setY;...; ps.executeQuery(); and not close the prepared
statement? That way, another thread could grab the connection and not
have to recreate the prepared statement. I would associate sets of
prepared statements with connections. Would this be faster than
creating a prepared statement for each web request?

I am using 7.1.3b2 (for production *crosses fingers*) in case that matters.

Once again thanks for any help and sorry for any formatting issues with
this message.


Join Excite! - http://www.excite.com
The most personalized portal on the Web!

pgsql-jdbc by date:

Previous
From: Barry Lind
Date:
Subject: Re: Getting a ResultSet for a refcursor element.
Next
From: "Brett"
Date:
Subject: Re: Taking advantage of prepared statement performance