我想保存一个时间戳到数据库,而JDBC驱动程序被转换为本地时区。 目前,只有MySQL和PostgreSQL对我来说很重要,但如果有一个独立于数据库的解决方案我将不胜感激。
例:
// i want that to be saved as 1970-01-01 00:00:00
TimeStamp ts = new java.sql.Timestamp(0);
// gets transformed to local time by jdbc driver (in my case to 1970-01-01 01:00:00)
st.setTimestamp(0, new java.sql.Timestamp(0));
// only works using postgres (mysql connector seems to ignore the calendar)
// postgres => 1970-01-01 00:00:00
// mysql => 1970-01-01 01:00:0
Calendar calutc = Calendar.getInstance(TimeZone.getTimeZone("UTC"));
st.setTimestamp(0, new java.sql.Timestamp(0), utccal);
我已经尝试来计算得到转化为正确的值的时间戳值(例如-3600000 => 1970-01-01 00:00:00在我的时区),但是这不会对Postgres的当天日期附近工作光节约时间的变化。