I used a datepicker for startdate and end date which is as below
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css">
<script type="text/javascript">
$(function () {
$( "#startDate" ).datepicker({
changeMonth: true,
changeYear: true,
dateFormat: 'dd-mm-yy'
});
$( "#endDate" ).datepicker({
changeMonth: true,
changeYear: true,
dateFormat: 'dd-mm-yy'
});
});
</script>
<style type="text/css">
.search_textbx
{
background-image:url('/SalesPropeller/calendar.jpg');
background-repeat:no-repeat;
background-position:right;
}
</style>
<form name="form" action="quotationSearchResult.jsp" method="post">
<input type="text" id="startDate" name="startDate" class="search_textbx" readonly="readonly" placeholder="    dd-mm-yyyy"/>
<input type="text" id="endDate" name="endDate" class="search_textbx" readonly="readonly" placeholder="    dd-mm-yyyy"/></td>
</form>
quotationSearchResult.jsp
<div id="divRight">
<%
int count = 0;
int SlNo=1;
%>
<hr />
<h3>Search Result for <u><%= request.getParameter("companyName")%></u> is : </h3>
<hr/>
<div id="divtable_wrapper">
<div id="divtbody" style="height: 470px;">
<form method="post" name="form">
<table class="divtable" width="1140">
<div id="divheader">
<thead>
<tr>
<th style="padding:1px 5px;border-right:1px solid #d47f66;border-bottom:1px solid #d47f66;background: beige;">Sl.NO</th>
<th style="padding:1px 5px;border-right:1px solid #d47f66;border-bottom:1px solid #d47f66;background: beige;">CompanyName</th>
<th style="padding:1px 5px;border-right:1px solid #d47f66;border-bottom:1px solid #d47f66;background: beige;">RefNo</th>
<th style="padding:1px 5px;border-right:1px solid #d47f66;border-bottom:1px solid #d47f66;background: beige;">Quot.Date</th>
<th style="padding:1px 5px;border-right:1px solid #d47f66;border-bottom:1px solid #d47f66;background: beige;">UserName</th>
<th style="padding:1px 5px;border-right:1px solid #d47f66;border-bottom:1px solid #d47f66;background: beige;">Grand Total</th>
<th style="padding:1px 5px;border-right:1px solid #d47f66;border-bottom:1px solid #d47f66;background: beige;">CST</th>
<th style="padding:1px 5px;border-right:1px solid #d47f66;border-bottom:1px solid #d47f66;background: beige;">VAT5.5</th>
<th style="padding:1px 5px;border-right:1px solid #d47f66;border-bottom:1px solid #d47f66;background: beige;">VAT14.5</th>
<th style="padding:1px 5px;border-right:1px solid #d47f66;border-bottom:1px solid #d47f66;background: beige;">ServiceTax</th>
<th colspan="1" style="padding:1px 5px;border-right:1px solid #d47f66;border-bottom:1px solid #d47f66;background: beige;">Action</th>
</tr>
</thead>
</div>
<%
//Connection con = null;
Object o2 = session.getAttribute("email");
String email = o2.toString();
String companyName = request.getParameter("companyName");
String startDate=request.getParameter("startDate");
String endDate=request.getParameter("endDate");
int cId=0;
//Statement st, st1;
try {
DBConnect db = new DBConnect();
Connection con = db.getCon();
Statement st = con.createStatement();
// System.out.println("At SearchResult.jsp:" + email + "," + category + "," + search + "," + search_tf);
ResultSet rs = st.executeQuery("Select CId,CompanyName,RefNo,Date,UserName,GrandTotal,CST,VAT5,VAT14,ServiceTax from marketing_database.quotationclient_details where companyName='"+companyName+"' AND Date BETWEEN '"+startDate+"' AND '"+endDate+"';");
// String q2 = "update dummy set category='" + category + "' where id = '1';";
// st1.executeUpdate(q2); // To insert the category name to dummy table in database
%>
<%
while (rs.next()) {
%>
<tr><td style="padding:1px 5px;border-right:1px solid #d47f66;border-bottom:1px solid #d47f66;" class="td1"><%=SlNo%></td>
<td style="padding:1px 5px;border-right:1px solid #d47f66;border-bottom:1px solid #d47f66;" class="td2"><%=rs.getString(2)%></td>
<td style="padding:1px 5px;border-right:1px solid #d47f66;border-bottom:1px solid #d47f66;" class="td3"><%=rs.getString(3)%></td>
<td style="padding:1px 5px;border-right:1px solid #d47f66;border-bottom:1px solid #d47f66;" class="td4"><%=rs.getString(4)%></td>
<td style="padding:1px 5px;border-right:1px solid #d47f66;border-bottom:1px solid #d47f66;" class="td5"><%=rs.getString(5)%></td>
<td style="padding:1px 5px;border-right:1px solid #d47f66;border-bottom:1px solid #d47f66;" class="td6"><%=rs.getString(6)%></td>
<td style="padding:1px 5px;border-right:1px solid #d47f66;border-bottom:1px solid #d47f66;" class="td7"><%=rs.getString(7)%></td>
<td style="padding:1px 5px;border-right:1px solid #d47f66;border-bottom:1px solid #d47f66;" class="td8"><%=rs.getString(8)%></td>
<td style="padding:1px 5px;border-right:1px solid #d47f66;border-bottom:1px solid #d47f66;" class="td9"><%=rs.getString(9)%></td>
<td style="padding:1px 5px;border-right:1px solid #d47f66;border-bottom:1px solid #d47f66;" class="td10"><%=rs.getString(10)%></td>
<td style="padding:1px 5px;border-bottom:1px solid #d47f66;" class="td12"><input type="button" name="edit" value="Report" style="background-color:#49743D;font-weight:bold;color:#ffffff;" onclick="generateReport(<%= rs.getString(1)%>);" ></td>
<% count++;
SlNo++;%>
</tr>
<%
}
%>
<%
} catch (Exception e) {
e.printStackTrace();
}
%>
</table>
</form>
<br>
<span style="float: left;"> <b><%= count%></b> Search Result Found.</span>
<br><br>
</div>
</div>
</div>
When i give a startDate as "01-01-2016" and endDate as "31-01-2016" it is fetching the record as shown in the image
But when i give startDate as "07-12-2015" and endDate as "18-01-2016" it is not fetching the record as shown in the image
So what's going and why it is not comparing the years properly.I am sql database as well