Uploaded image for project: 'Commons DbUtils'
  1. Commons DbUtils
  2. DBUTILS-26

[dbutils] Oracle 9.2.0 JDBC Timestamp Problem

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • Nightly Builds
    • 1.1
    • None
    • Operating System: Windows XP
      Platform: PC

    • 30749

    Description

      I just run into a Timestamp problem with the Oracle 9i (9.2.0) JDBC Driver.

      When calling rs.getObject(index) on a DB field, defined as Timestamp(6),
      the resulting object is a oracle.sql.TIMESTAMP and not a java.sql.Timestamp as
      with other JDBC Drivers.

      This leads to a null value propagation if your Bean Property is defined as
      java.sql.Timestamp.

      If calling rs.getTimestamp(index), Oracle correctly converts the
      resulting value to a java.sql.Timestamp object.

      The following addition to the processColumn Method of the BeanProcessor class
      whould solve the problem.

      } else if(propType.equals(Timestamp.class)) {
      return rs.getTimestamp(index);

      This ensures that for a Bean property of type java.sql.Timestamp the
      getTimestamp() method is called.
      Otherwise the default getObject() mehod is called, so there souldn't be
      a problem if someone wants the Oracle enhanced oracle.sql.TIMESTAMP
      object.

      Regards
      Rolf

      Attachments

        Activity

          People

            Unassigned Unassigned
            rmoser@datacomm.ch Rolf Moser
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: