I have a simple query as follow
select Now() from YYDD
The current time is 2009-10-27 10:03:12.907 but I got 2009-10-27 02:03:12.907.
I always get a offset timestamp value based on GMT timezone. How should I solve the problem?
|
Please download the latest pacakge.
|
>I always get a offset timestamp value based on GMT timezone.
>How should I solve the problem?
You should use ResultSet.getTimestamp(int columnIndex, Calendar cal)
|