-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 
Author Message
 Post subject: Temps incorrect dans PostGreSQL
PostPosted: Wed Oct 15, 2008 7:13 pm 
Newbie

Joined: Wed Oct 15, 2008 6:47 pm
Posts: 7
Location: Vancouver
J'ai un champ Java
Code:
private Date startDate;


mappé commr ça:
Code:
<property name="startDate"/>


Le SQL généré (PostGreSQL):
Code:
column start_date timestamp;


Je fais ça (création d'une date à partir d'une chaîne):
Code:
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm");
Date date = dateFormat.parse("2008-10-15 10:11");
// date = Wed Oct 15 10:11:00 GMT-08:00 2008
robot.setStartDate(date);


Le temps dans la BDD est incorrect: 11:11 au lieu de 10:11. L'heure prend la valeur des minutes !

Quelqu'un a une explication ?
J'utilise Java 1.5, Hibernate 3 et PostGreSQL 8. Merci !


Top
 Profile  
 
 Post subject:
PostPosted: Thu Oct 16, 2008 1:32 pm 
Newbie

Joined: Wed Oct 15, 2008 6:47 pm
Posts: 7
Location: Vancouver
Désolé, ce n'était pas un problème Hibernate. Juste
Code:
new Date()

retournait une date différente d'une heure de celle de l'ordinateur.

C'était un problème spécifique à Java sur Ubuntu concernant le "daylight saving time":
https://bugs.launchpad.net/ubuntu/+sour ... omments/13

Pour le résoudre:
Code:
sudo cp /etc/localtime /etc/localtime.bak
sudo ln -s -f /usr/share/zoneinfo/Canada/Pacific /etc/localtime


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.