我尝试使用DateTime
从我的数据库中检索resultset
字段,但我找不到getDateTime()
方法,我甚至尝试使用{{1}但仍然无法转换为getTimestamp()
这里是代码:
DateTime
日期测试代码:
private static Test map(ResultSet resultSet) throws SQLException {
Test test = new Test();
test.setTestId(resultSet.getLong("TestID"));
test.setTeacherId(resultSet.getLong("TeacherID"));
test.setModuleId(resultSet.getLong("ModuleID"));
test.setLaunchDate(resultSet.getTimestamp("LaunchDate")); //i need to retrieve a DateTime here
test.setTestType(resultSet.getString("TestType"));
return test;
}