Re: 8.0.3 parse errors where 7.x was ok - Mailing list pgsql-jdbc

From Oliver Jowett
Subject Re: 8.0.3 parse errors where 7.x was ok
Date
Msg-id 42F94787.7030408@opencloud.com
Whole thread Raw
In response to 8.0.3 parse errors where 7.x was ok  (Nick Johnson <pgsql@spatula.net>)
List pgsql-jdbc
Nick Johnson wrote:
> I'm getting a new exception when upgrading to Postgres 8.0.3 with the
> JDBC drivers it builds:
>
> java.sql.SQLException: ERROR: parse error at or near "$1"
>
> This is happening with the following bit of code:
>
>     105         try {
>     106             s = c.prepareStatement("select now() - interval ?");
>     107             s.setString(1, "7 days");
>     108             ResultSet r = s.executeQuery();

Because the driver now pushes parameter handling to the backend, you can
only put ? placeholders where there is a PARAM terminal in the backend's
SQL grammar. Previously the driver just substituted parameter values
directly into the query, so you could get away with all sorts of things.

Perhaps this will work instead:

  s = c.prepareStatement("select now() - ?");
  s.setObject(new org.postgresql.util.PGInterval("7 days"));

-O

pgsql-jdbc by date:

Previous
From: Kris Jurka
Date:
Subject: Re: 8.0.3 parse errors where 7.x was ok
Next
From: Dave Cramer
Date:
Subject: Re: Missing functionality in ResultSetMetaData ?