2 Replies Latest reply on Jun 20, 2003 6:57 PM by mpatnode

    standardjbosscmp-jdbc.xml broken for DB2 7.2?

    mpatnode

      In DB2 7.2 Timestamps are Dates not Timestamps (yes only IBM). This was mapped correctly in 3.0.4 standardjbosscmp-jdbc.xml and is broken in 3.0.7 and beyond (3.2.1 incl). Any reason for the change? Does DB2 8.0 work differently?

      In short the lines:


      <java-type>java.sql.Timestamp</java-type>
      <jdbc-type>TIMESTAMP</jdbc-type>
      <sql-type>TIMESTAMP</sql-type>


      Need to read


      <java-type>java.sql.Date</java-type>
      <jdbc-type>TIMESTAMP</jdbc-type>
      <sql-type>TIMESTAMP</sql-type>


      For DB2 7.2. Was this change tested?