On Thu, 11 Jun 2009, Johnny Luong wrote:
> Is there a way to use PreparedStatements for specific data types such as
> interval or inet? I have a JDBC application that I'm trying to migrate
> from the V2 Protocol which allowed the arbitrary use of setObject() to
> the V3 Protocol and if there was Java PG specific way or JDBC 3 way
> (preferrable) that someone would describe, it would be appreciated.
>
setObject(i, "my value", Types.OTHER);
Kris Jurka