RE: datetime fix - Mailing list pgsql-interfaces

From Peter Mount
Subject RE: datetime fix
Date
Msg-id 1B3D5E532D18D311861A00600865478CF1B434@exchange1.nt.maidstone.gov.uk
Whole thread Raw
In response to datetime fix  (Ken Kachnowich <khkachn@toad.net>)
List pgsql-interfaces
This was fixed some time ago (well after the last release).

If the current cvs version still has problems, please let me know. The
datetime & timestamp problem is one I'd like to get rid of once and for all.

Peter

-- 
Peter Mount
Enterprise Support Officer, Maidstone Borough Council
Email: petermount@maidstone.gov.uk
WWW: http://www.maidstone.gov.uk
All views expressed within this email are not the views of Maidstone Borough
Council


-----Original Message-----
From: Ken Kachnowich [mailto:khkachn@toad.net]
Sent: Tuesday, October 17, 2000 12:37 AM
To: Postgres interfaces
Subject: Re: [INTERFACES] datetime fix


Thanks Michael.

A couple of typos in what you sent. The uppercase MM for the minuets
should be lowercase mm.

Unfortenitly this does not work for me. When I select from the database
with psql I see times like this:

11:30:10.74-04  or
11:30:10-04

I do not know where the -04 is coming from or what it means.
What I want to do is select a timestamp field from one table and 
use it in a select from another table. The times in the two tables
are exactly the same. But even with the fix the second select fails
to get the record.

Ken


Michael Stephenson wrote:
> 
> > Was there a rummer that a patch was coming out that fixed a bug with
> > the datetime field? I'm getting times with dashes in the milliseconds
> > (i.e.:  12:01:00.10-04 or something like that).
> 
> I placed a patch on the mailing list a few days ago, which fixes the
> problem, hope this helps.
> 
> Michael Stephenson
> 
> *** src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java     Fri May 12
> 20:54:22 2000
> --- src/interfaces/jdbc/org/postgresql/jdbc2/ResultSetPatch.java
> Mon Sep 25 15:36:46 2000
> ***************
> *** 439,445 ****
>       if(s==null)
>         return null;
> 
> !     SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd
> HH:mm:sszzz");
> 
>       try {
>         return new Timestamp(df.parse(s).getTime());
> --- 439,456 ----
>       if(s==null)
>         return null;
> 
> !     SimpleDateFormat df = null;
> !     if (s.length()>21 && s.indexOf('.') != -1) {
> !         df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSzzz");
> !     } else if (s.length()>19 && s.indexOf('.') == -1) {
> !         df = new SimpleDateFormat("yyyy-MM-dd HH:MM:sszzz");
> !     } else if (s.length()>19 && s.indexOf('.') != -1) {
> !         df = new SimpleDateFormat("yyyy-MM-dd HH:MM:ss.SS");
> !     } else if (s.length()>10 && s.length()<=18) {
> !         df = new SimpleDateFormat("yyyy-MM-dd HH:MM:ss");
> !     } else {
> !         df = new SimpleDateFormat("yyyy-MM-dd");
> !     }
> 
>       try {
>         return new Timestamp(df.parse(s).getTime());


pgsql-interfaces by date:

Previous
From: Peter Mount
Date:
Subject: RE: 2 computers 1hd 2 postgres daemons. Is it possib le?
Next
From: Peter Mount
Date:
Subject: RE: Save java objects using JDBC