java.sql.Timestamp与一起使用
PreparedStatement#setTimestamp()。
ps.setTimestamp(1, new Timestamp(dateTime.getMillis()));
请注意,
java.sql.Date仅存储日期部分,而不存储时间部分。

java.sql.Timestamp与一起使用
PreparedStatement#setTimestamp()。
ps.setTimestamp(1, new Timestamp(dateTime.getMillis()));
请注意,
java.sql.Date仅存储日期部分,而不存储时间部分。