Re: Problem with DATE

From: Vinayak <vinpokale(at)gmail(dot)com>
To: pgsql-jdbc(at)postgresql(dot)org
Subject: Re: Problem with DATE
Date: 2015-01-16 05:35:06
Message-ID: 1421386506791-5834215.post@n5.nabble.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

Hi Dave,
Thank you for explanation.

I understood that the behavior of date is different in PostgreSQL and Java.
PostgreSQL DATE type return date part only.
Java DATE return date and time with timezone.
>I am guessing what you really want is to just take the date in your Oracle
db, load it into java and store >it into postgresql without any
transformation.
>This would require a custom date type.
I have created custom date type which return date and time in PostgreSQL.
postgres=# select now()::date;
now
---------------------------------
2015-01-16 10:51:41
(1 row)
but still PreparedStatement throws error for date parameter.

-----
Regards,
Vinayak,

--
View this message in context: http://postgresql.nabble.com/Problem-with-DATE-tp5833008p5834215.html
Sent from the PostgreSQL - jdbc mailing list archive at Nabble.com.

In response to

Responses

Browse pgsql-jdbc by date

  From Date Subject
Next Message Dave Cramer 2015-01-16 10:41:05 Re: Problem with DATE
Previous Message Dave Cramer 2015-01-14 11:40:43 Re: Problem with DATE