Re: server-side prepared - Mailing list pgsql-jdbc

From Dave Cramer
Subject Re: server-side prepared
Date
Msg-id 1042054261.1016.97.camel@inspiron.cramers
Whole thread Raw
In response to server-side prepared  (Felipe Schnack <felipes@ritterdosreis.br>)
List pgsql-jdbc
Felipe,

You, need the new code.

Dave
On Wed, 2003-01-08 at 13:34, Felipe Schnack wrote:
>   I just can't use server-side prepared statements
>   Here is a snippet of my sources, note that the column I'm inserting is
> of "bigint" data type
>   PreparedStatement prep = Connection.prepareStatement("insert into
> tablename values (?)");
>   prep.setNull(1, Types.BIGINT);
>   prep.executeUpdate();
>   For some strange reasons when I execute that I get the following
> error: "Column 'cpf' is of type BIGINT, but expression is of type text"
>   Well, I specified the BIGINT type correctly, What can I do?
>
>
--
Dave Cramer <Dave@micro-automation.net>


pgsql-jdbc by date:

Previous
From: Scott Lamb
Date:
Subject: Re: server-side prepared
Next
From: Felipe Schnack
Date:
Subject: Re: server-side prepared