当我在一个月内的两个日期之间(例如 between 02-02-2013
and 09-02-2013
)进行搜索时,结果显示 from 03-01-2013
to08-01-2013
和03-02-2013
to 08-02-2013
。
下面是我的代码:
try {
dconfig dcf=new dconfig();
java.sql.Connection connection;
Class.forName(dcf.driver);
connection=(com.mysql.jdbc.Connection) DriverManager.getConnection(dcf.StrUrl,dcf.StrUid,dcf.StrPwd);
ResultSet rs = null;
ResultSet rscount;
String StrQr="";
if (jobnamesearch.getText().trim().length()>0 ) {
StrQr=StrQr + " and job_name like '%" + jobnamesearch.getText().trim() +"%' ";
}
if (datetosearch.getText().trim().length()>0) {
StrQr=StrQr + " and date > '" + datesearch.getText().toString()+"' ";
StrQr=StrQr + " and date < '" + datetosearch.getText().toString()+"' ";
}
if (datesearch.getText().trim().length()>0 && datetosearch.getText().trim().length()==0) {
StrQr=StrQr + " and date like '%" + datesearch.getText().trim().toString()+ "%' ";
}
if (dwsearch.getText().trim().length()>0 ) {
StrQr=StrQr + " and dw_no like '%" + dwsearch.getText().trim() + "%' ";
}
if (remsearch.getText().trim().length()>0 ) {
StrQr=StrQr + " and rem_no like '%" + remsearch.getText().trim() + "%' ";
}
if (typesearch.getSelectedItem().toString().length()<11) {
StrQr=StrQr + " and type like '%" + typesearch.getSelectedItem().toString() + "%' ";
}
if (usersearch.getSelectedItem().toString().length()>0) {
StrQr=StrQr + " and user like '%" + usersearch.getSelectedItem().toString() + "%' ";
}
java.sql.PreparedStatement stmt=connection.prepareStatement("SELECT ID,job_name,details,type,dw_no,rem_no,user,date FROM tracker where 1=1 " + StrQr +" order by ID DESC");
java.sql.PreparedStatement stmtcount=connection.prepareStatement("SELECT Count(*) FROM tracker where 1=1 " + StrQr +"");
rs = stmt.executeQuery();
rscount = stmtcount.executeQuery();
}