I am converting an application from another IDE (TogetherSoft) to run in MyEclipse and have found a difference in the way Time values are handled.
If I create a java.sql.Time variable with zero millisecs I would have expected the time represented to be 00:00:00 which it was before, by in MyEclipse it is giving me 01:00:00
i.e. the code:
java.sql.Time = new Time(0);
System.out.println(tim);
gives output
01:00:00
This seems wrong to me. Is it something to do with my settings?
My default timezone is:
[id=Europe/London,offset=0,dstSavings=3600000,useDaylight=true,startYear=0,startMode=2,startMonth=2,startDay=-1,startDayOfWeek=1,startTime=3600000,startTimeMode=2,endMode=2,endMonth=9,endDay=-1,endDayOfWeek=1,endTime=3600000,endTimeMode=2]