JDBC, Timestamps, and DateStyle

From: Aleksey Demakov <avd(at)gcom(dot)ru>
To: pgsql-interfaces(at)postgresql(dot)org
Cc: Peter T Mount <peter(at)retep(dot)org(dot)uk>
Subject: JDBC, Timestamps, and DateStyle
Date: 1998-10-27 11:51:31
Message-ID: 87ww5mrznf.fsf@avd.garsib.ru
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces


I had problems reading datetime fields with the ResultSet.getTimestamp
method. First, it looks like this method always assumes that DateStyle
is ISO. At the same time the driver checks current DateStyle in the case
of Dates and acts accordingly. IMHO, it's a bit incosistent.

As I recall the ODBC driver has no such problems because it always uses
the same format for communication with backend. It sets it when it opens
a connection.

But it is not my main problem since I can set DateStyle by myself.

The other problem is that the driver simetimes fails to parse timestamps.
I found two reasons for this. The first is that the timestamp can contain
fractions of second. The second relates to timezones. I don't quite
understand it, though. I simply rewrote the code so it works for me. And
I believe it should also work for others.

The patch is below.

Aleksey

*** ResultSet.java.old Thu Sep 3 14:00:49 1998
--- ResultSet.java Tue Oct 27 16:21:53 1998
***************
*** 448,463 ****
public Timestamp getTimestamp(int columnIndex) throws SQLException
{
String s = getString(columnIndex);
! SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:sszzz");
!
if (s != null)
{
! int TZ = new Float(s.substring(19)).intValue();
! TZ = TZ * 60 * 60 * 1000;
! TimeZone zone = TimeZone.getDefault();
! zone.setRawOffset(TZ);
! String nm = zone.getID();
! s = s.substring(0,18) + nm;
try {
java.util.Date d = df.parse(s);
return new Timestamp(d.getTime());
--- 448,477 ----
public Timestamp getTimestamp(int columnIndex) throws SQLException
{
String s = getString(columnIndex);
! SimpleDateFormat df;
if (s != null)
{
! int i = 19;
! if (s.charAt(i) == '.')
! {
! i++;
! while(Character.isDigit(s.charAt(i)))
! i++;
! df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSSzzz");
! }
! else
! df = new SimpleDateFormat("yyyy-MM-dd HH:mm:sszzz");
!
! int TZ = new Float(s.substring(i)).intValue();
! String sign;
! if (TZ < 0)
! {
! sign = "-";
! TZ = -TZ;
! }
! else
! sign = "+";
! s = s.substring(0,i) + "GMT" + sign + TZ/10 + TZ%10 + ":00";
try {
java.util.Date d = df.parse(s);
return new Timestamp(d.getTime());

--
Aleksey Demakov
avd(at)gcom(dot)ru

Responses

Browse pgsql-interfaces by date

  From Date Subject
Next Message Sferacarta Software 1998-10-27 15:01:11 Re[2]: [HACKERS] Re: [INTERFACES] Odbc parser error
Previous Message Peter T Mount 1998-10-27 10:55:14 Re: [INTERFACES] JDBC, Timestamps, and DateStyle