3

我需要比较 Java 中的两个日期,但是从数据库中获取的日期与插入的日期不同。

@Test
public void testCompareHoraHardcore() {
    String sql = "update solicitacao_viagem set "
            + "hora_retorno=?, id_veiculo=?, id_responsavel_solicitacao=?, "
            + "id_responsavel_autorizante=? where id_solicitacao_viagem=? ";
    Timestamp timestamp1 = new Timestamp(System.currentTimeMillis());
    try {
        PreparedStatement stmt = connection.prepareStatement(sql);
        stmt.setTimestamp(1, timestamp1);
        stmt.setInt(2, 90);
        stmt.setInt(3, 337);
        stmt.setInt(4, 337);
        stmt.setInt(5, 91);
        stmt.executeUpdate();
        stmt.close();
    } catch (SQLException e) {
        e.printStackTrace();
    }
    Timestamp timestamp2 = null;
    try {
        sql = "select * from solicitacao_viagem where id_solicitacao_viagem=?";
        PreparedStatement stmt = connection.prepareStatement(sql);
        stmt.setInt(1, 91);
        stmt.executeQuery();
        ResultSet rs = stmt.executeQuery();
        rs.next();
        timestamp2 = rs.getTimestamp("hora_retorno");
        stmt.close();
    } catch (SQLException e) {
        e.printStackTrace();
    }

    assertEquals(timestamp1.getTime(), timestamp2.getTime());
}

该测试返回:

Testcase: testCompareHoraHardcore(com.model.dao.SolicitacaoViagemDAOTest):  FAILED
expected:<1360553289573> but was:<1360553289000>
junit.framework.AssertionFailedError: expected:<1360553289573> but was:<1360553289000>
at com.model.dao.SolicitacaoViagemDAOTest.testCompareHoraHardcore(SolicitacaoViagemDAOTest.java:349)

为什么 MySQL 会削减最后三个数字?

我正在使用 MySQL 5.5.22 和 Java(TM) SE 运行时环境(构建 1.7.0_11-b21)。

“hora_retorno”列是 TIMESTAMP。

提前致谢。

4

2 回答 2

3

MySql 存储DATETIME精度TIMESTAMP这是文档中的引用

A DATETIME or TIMESTAMP value can include a trailing fractional seconds
part in up to microseconds(6 digits) precision. 

Although this fractional part is recognized, 
it is discarded from values stored into DATETIME or TIMESTAMP columns
于 2013-02-11T03:57:33.483 回答
2

据此,MySQL 不会在 Timestamp 列(或其他日期时间类型)中存储小数秒。 http://dev.mysql.com/doc/refman/5.0/en/fractional-seconds.html

于 2013-02-11T03:57:01.713 回答