Hi there
I can't get over this since several days ago.
If I run the query from command line I get:
2008-01-01 01:00:00 | 276 | 450
2008-01-01 01:00:00 | 172 | 270
2008-01-01 01:00:00 | 690 | 270
2008-01-01 01:00:00 | 793 | 540
...
ArrayList<Date> date = new ArrayList<Date>();
while(res.next()) {
date.add(new
Date(res.getTimestamp("xs").getNanos()));
}
res.close();
I'm getting this:
[Wed Dec 31 19:00:00 EST 1969, Wed Dec 31 19:00:00 EST 1969,
....................Wed Dec 31 19:00:00 EST 1969]
What am I missing here ?
Should I use Time instead of Date ?
Regards
PEter
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---