我正在尝试将created_at DATETIME NOT NULL
上我的表格中的created_at列时间OPENSHIFT
设置为我当地的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();
}
答案 0 :(得分:1)
显然,MySQL服务器上无法识别应用程序计算机上的默认日期/时间格式。最简单的解决方法是使用数据库来设置时间。
一种方法是:
PreparedStatement prep = con
.prepareStatement("REPLACE INTO bus(mac, route, latitude, longitude, created_at)"
+ "VALUES( ?, ?, ? , ?, now())");
更好的方法是定义created_at
,使其具有插入时间的默认值。然后,您可以将其完全排除在replace
/ insert
之外。这里解释了process。一些细节取决于您使用的MySQL版本。