This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Hai Friends I am using MS ACCESS 2000 Database I am using the following sqlString in AWT Frame class to fetch the date from MS ACcess Database I heard that while comparing with >= or <= we need to include # symbol between the date.<br /> I was tried by using #. But i am not able to get the results.<br /> please see the sql query and give me the solution.<br /> Thanksinadvance<br /> Yours<br /> Rajesh<br /> if(Enddate.getText().trim().equals(""))<br /> {<br /> sqlString = "select * from data_comm_err where log_date >= '" + Startdate.getText() + "'"; } if(Startdate.getText().trim().equals("")) { sqlString = "select * from data_comm_err where log_date <= '" + Enddate.getText() + "'"; }