Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following SQL that returns the max BILL_DATE based on some criteria. BILL_DATE is defined in the database as a DATE.

SELECT MAX(BILL_DATE)
FROM BILLTABLE
WHERE col1 = ? and
      col2 = ?

But when I read the value from the resultSet.

bill.setBillDate(resultSet.getDate(1));

An exception is thrown:

Invalid data conversion: Wrong result column type for requested conversion. ERRORCODE=-4461, SQLSTATE=42815

I have also tried

bill.setBillDate(resultSet.getString(1));

But that doesn't return a date. It returns either 100, 200 or 300 which is obviously not correct.

Is there another way to do this? Am I doing something wrong?

Thanks, Randall

EDIT

I had two resultSets open in the function where I was reading in the BILL_DATE. I changed the code to the following and it works fine.

bill.setBillDate(resultSet1.getDate(1));
share|improve this question
What do you see if you print out getString(1)? How are you defining the date field in your table? – Ash Aug 17 '10 at 20:50
I have updated my question reflecting your questions. – Randall Kwiatkowski Aug 17 '10 at 22:32

2 Answers

Ash is right, how are you defining the date column?

Is it possible the column is timestamp? In that case try resultSet.getTimestamp(1))

share|improve this answer
I have updated my question reflecting your questions. – Randall Kwiatkowski Aug 17 '10 at 22:32
up vote 0 down vote accepted

I had two resultSets open in the function where I was reading in the BILL_DATE. I changed the code to the following and it works fine.

bill.setBillDate(resultSet1.getDate(1));
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.