this is the document link: "Mapping SQL and Java Types"
let's see 8.9.3 JDBC Types Mapped to Java Object Types at row: TIMESTAMP - java.sql.Timestamp
but when I use getObject() with oracle database on a TIMESTAMP column, the return type is oracle.sql.TIMESTAMP, it can not been cast to java.sql.Timestamp
I know that I can use getTimestamp() but I need getObject() for handling any resultset regardless of types.
Is the document wrong or me?