我试图将OPENSHIFT
上的表中的created_at列时间created_at DATETIME NOT NULL
设置为Kopenhagen
的本地时间。如何将openshift服务器中的时间设置为我的本地时间?现在我得到这个错误com.mysql.jdbc.MysqlDataTruncation: Data truncation: Incorrect datetime value: '16.05.2015 22:28:13' for column 'created_at' at row 1
在这行prep.executeQuery();
谢谢你的帮助。
stt.execute("CREATE TABLE IF NOT EXISTS bus"
+ "(id INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,"
+ "mac VARCHAR(30) NOT NULL UNIQUE,"
+ "route int(11) NOT NULL,"
+ "latitude FLOAT(10,6) NOT NULL,"
+ "longitude FLOAT(10,6) NOT NULL,"
+ "created_at DATETIME NOT NULL )");
insert_into_table方法:
private void insert_into_table(String macD, int routeD, double latD,
double longD, Connection con) throws SQLException {
Calendar calendar = new GregorianCalendar();
TimeZone timeZone = TimeZone.getTimeZone("Europe/Berlin");
calendar.setTimeZone(timeZone);
String time = new SimpleDateFormat("dd.MM.yyyy HH:mm:ss")
.format(calendar.getTime());
PreparedStatement prep = con
.prepareStatement("REPLACE INTO bus(mac, route, latitude, longitude, created_at)"
+ "VALUES( ?, ?, ? , ?,? )");
prep.setString(1, macD);
prep.setInt(2, routeD);
prep.setDouble(3, latD);
prep.setDouble(4, longD);
prep.setString(5, time);
prep.executeQuery();
}
显然,MySQL服务器无法识别应用程序计算机上的默认日期/时间格式。最简单的解决方法是使用数据库设置时间。
方法之一是:
PreparedStatement prep = con
.prepareStatement("REPLACE INTO bus(mac, route, latitude, longitude, created_at)"
+ "VALUES( ?, ?, ? , ?, now())");
更好的方法是定义created_at
,使其具有插入时间的默认值。然后,您可以将其完全排除在replace
/insert
之外。这里解释了这个过程。