The schema for the simple table is
Code:
CREATE TABLE DUMMY_RESULT
(
LABOR_BUDGET INTEGER,
LABOR_SURPLUS_PER_HOUR NUMBER(10,2),
SURPLUS_LABOR_AMT NUMBER(10,2),
SAVINGS_POOL_BALANCE NUMBER(10,2),
NEW_SAVINGS_POOL NUMBER(10,2),
STORE_ID NUMBER(38),
ALLOCATED_BUDGET NUMBER(10,2),
SURPLUS_DUE NUMBER(10,2),
TOTAL_LABOR_COST NUMBER(10,2),
CREATED_BY VARCHAR2(30) ,
CREATED_DT TIMESTAMP(6)
)
I will get the latest build, but based on the documentation, I should not have to create a mapping - JDBC-TYPE TIMESTAMP gets mapped to java.sql.Timestamp. I am using Oracle 9i.
I will test with latest build and verify if t works out-of-the-box.
Thanks again for your response!
Atul