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

It seems that this part of my code is where the exception occurs:

c = dbConnection.getConnection(); 
q = "SELECT * FROM book WHERE nextInc<=? AND inlib=?";
s = c.prepareStatement(q); 
s.setBigDecimal(1,BigDecimal.valueOf(curDate.getTime())); 
s.setBoolean(2,false); 
rs = s.executeQuery(); <-- Error.

I'm using "sun.jdbc.odbc.JdbcOdbcDriver".

share|improve this question

2 Answers

up vote 3 down vote accepted

As per this, the error could occur because of non-existent column.

Could you put the structure of the table here?

share|improve this answer
I feel like an idiot, I mistyped the column name. Thanks for the help. – Dean Feb 27 '10 at 5:19

After checking all of my column names, I also discovered that double quotes around a string literal will cause the same error.

Wrong: WHERE foo LIKE "bar"

Right: WHERE foo LIKE 'bar'

Just an FYI for any non-Access folks scratching their heads (like me).

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.