Re: prepareStatement() - Mailing list pgsql-jdbc

From Oliver Jowett
Subject Re: prepareStatement()
Date
Msg-id 42E1EEA6.60407@opencloud.com
Whole thread Raw
In response to prepareStatement()  (Michael Allman <msa@allman.ms>)
List pgsql-jdbc
Michael Allman wrote:
> Does Postgres's JDBC Connection#prepareStatement(String) method support
> queries that can't be prepared by the backend?  (Namely those that are
> not of the SELECT, INSERT, UPDATE, or DELETE variety?)

It supports any query that the backend can parse -- it uses the v3
protocol Parse/Bind messages rather than using the SQL PREPARE statement
so it's not limited to SELECT/INSERT/UPDATE/DELETE.

The main gotcha (just mentioned in my previous email) is that you can
only put parameter placeholders where there is a PARAM terminal in the
server's SQL grammar (i.e. somewhere you could legally put $1, $2, etc)

-O

pgsql-jdbc by date:

Previous
From: Oliver Jowett
Date:
Subject: Re: jdbc xa support
Next
From: Oliver Jowett
Date:
Subject: Re: Timestamp Conversion Woes Redux