Trying to get a time stored in a datadase.
select dbtimezone from dual gives me -07:00
I am using Java program to get the Date from Oracle
Column i type of Date.
while i am fetching the time in my java program am getting it as GMT. actually i want the time as it is there in database not converted time. Though i can convert back to -07:00 , i am seeking another way to do because conversion always depends on the dbtimezone of the database using. Can any one help me ? Thanks in advance
java.util.Date,java.sql.Date,java.sql.Timestampdon't contain information about timezones. – Jesper May 24 '11 at 13:44NSCalendarDateinplistand in java class i am converting the value intotoString()– neo May 24 '11 at 13:51