我有一个类型DATETIME
的列,其值在MySQL数据库中为2012-05-07 19:59:12
。我试图从DB中检索此值,假设它存储在UTC时区:
Calendar cal = Calendar.getInstance(new SimpleTimeZone(0, "UTC"));
Date date = resultSet.getTimestamp(1, cal);
System.out.println(date);
输出(CEST
是我当地的时区,比UTC早2小时):
Mon May 07 23:59:12 CEST 2012
期望值是:
Mon May 07 21:59:12 CEST 2012
我在JDBC URL中使用这三个参数(Europe/Berlin
与CEST
相同):
..&useGmtMillisForDatetimes=true&useTimezone=true&serverTimezone=Europe/Berlin
是我的缺陷还是应该在JDBC驱动程序中另外配置一些东西?我正在使用mysql:mysql-connector-java:5.1.20
。
答案 0 :(得分:12)
使用这些JDBC URL params可行:
useGmtMillisForDatetimes=true
useJDBCCompliantTimezoneShift=true
useLegacyDatetimeCode=false
useTimezone=true
serverTimezone=UTC