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

This is a part of my code

java.sql.Date d1=java.sql.Date.valueOf("2011-03-02"); 
java.sql.Date d2=java.sql.Date.valueOf("2011-03-10"); 
java.sql.Date systemDate=java.sql.Date.valueOf("2011-03-04");

String sql="select id from period where '"+systemDate+"' between '"+d1+"' and '"+d2+"'";

This is my code. I want to get the id which falls between these dates. But i am not getting the desired result. I am getting back all the id present in the table.

share|improve this question

1 Answer

Do you have good results when you use other SQL tools (like pgadmin for PostgreSQL or SQL Developer for Oracle)?

Is so then try to use PreparedStatement. In your case this will look like:

PreparedStatement pstmt = con.prepareStatement("select id from period where ? between ? and ?");
pstmt.setDate(1, systemDate);
pstmt.setDate(2, d1);
pstmt.setDate(3, d2);
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.