Re: help with front/backend datatype converting

From: Dave Cramer <pg(at)fastcrypt(dot)com>
To: "Do, Leon (Leon)" <leondo(at)lucent(dot)com>
Cc: <pgsql-jdbc(at)postgresql(dot)org>
Subject: Re: help with front/backend datatype converting
Date: 2006-11-10 21:15:06
Message-ID: 5366BF7A-226B-443C-97A6-7AAE5F603BA2@fastcrypt.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

Hi Leon,

No, currently there is no way to do this. It is possible, but this is
probably the worst data type to try this with. Postgresql has two
timestamp types, 1 with timezone, 1 without, jdbc has no knowledge of
this. Do you have suggestions on how to resolve this ? Also consider
the actual timezone, what if the timezone of the server is different
than the timezone of the client. To add to the problem, it is
possible for the server to keep dates/timestamps as 64bit integers,
or Floating point values. The client has to send the data in exactly
the right format.

Sorry to only outline the problems without constructive solutions.

Dave

On 10-Nov-06, at 3:58 PM, Do, Leon (Leon) wrote:

> Hi,
>
>
>
> It looks like PostgreSQL JDBC always converting a column value to
> text before sending it to the Backend server. Is there a way to
> stop this behavior?
>
>
>
> I am using the following piece of code to set the timestamp value:
>
>
>
> ByteArrayInputStream is = new ByteArrayInputStream(bdata);
>
>
>
> prepstmt.setBinaryStream(1,is,bdata.length);
>
>
>
> java.sql.Timestamp sqltime = new
>
> java.sql.Timestamp
> (System.currentTimeMillis());
>
> prepstmt.setTimestamp(2,sqltime);
>
>
>
>
>
> When the backend server receives the parse message, the oid type
> for binary data is set but the oid type for timestamp is not set.
>
>
>
> When the bind message arrives, the format type for binary data is
> binary and the format type for timestamp is text and there is no
> way to know what is the type of the value anymore. Can I
> configure to disable text converting feature?
>
>
>
> thanks
>
>
>
>
>
> Leon Do
>
> Lucent Technologies
>
> Mobility Software Engineer
>
>
>
>
>
>

In response to

Responses

Browse pgsql-jdbc by date

  From Date Subject
Next Message Oliver Jowett 2006-11-10 22:09:50 Re: Bug in TimestampUtils.java?
Previous Message Do, Leon (Leon) 2006-11-10 20:58:16 help with front/backend datatype converting