Re: Prepared statement problem - Mailing list pgsql-jdbc

From Dave Cramer
Subject Re: Prepared statement problem
Date
Msg-id F1AA1C86-3FA1-4392-B572-A0D596AC35B4@fastcrypt.com
Whole thread Raw
In response to Prepared statement problem  (Djordje Nikolic <djordje@abanka.co.yu>)
List pgsql-jdbc
jdbc is using server side prepared statements.

As such the server won't allow this particular construct.

You can put the ? in for where something = ?
Dave
On 25-Apr-07, at 7:30 AM, Djordje Nikolic wrote:

> I had a problem with PreparedStatement which uses ? after FROM clause.
> Server reported org.postgresql.util.PSQLException: ERROR: syntax
> error at or near "$1"
>
> This is simplified example.
>
> PreparedStatement pstmt;
> try {
>  pstmt = conn.prepareStatement("SELECT * FROM ?");
>  pstmt.setString(1, "ps_nalog");
>  pstmt.executeQuery();
> } catch (SQLException ex) {
>  ex.printStackTrace();
> }
>
> Can anybody tell me where is posibble to put ? in a SELECT statement !
>
> best regards,
> Djordje Nikolic
>
> www.abanka.co.yu
>
>
>
>
> ---------------------------(end of
> broadcast)---------------------------
> TIP 2: Don't 'kill -9' the postmaster


pgsql-jdbc by date:

Previous
From: Djordje Nikolic
Date:
Subject: Prepared statement problem
Next
From: Kris Jurka
Date:
Subject: Re: Question for the XAConnections default autocommit state