运行index.jsp出现这样的报错java.sql.SQLException: No value specified for parameter 1
运行index.jsp出现这样的报错java.sql.SQLException: No value specified for parameter 1
然后只出现商品展示四个字 什么内容也木有了
我的代码是
<h1>
<B>商品展示<B>
</h1>
<hr>
<center>
<table width="750" height="60" cellpadding="0" cellspacing="0"
border="0">
<tr>
<td>
<!-- 商品循环开始 -->
<%
ItemsDAO itemsDao = new ItemsDAO();
ArrayList<Items> list = itemsDao.getAllItems();
if (list != null && list.size() > 0) {
for (int i = 0; i < list.size(); i++) {
Items item = list.get(i);
%>
<div>
<dl>
<dt>
<a href="details.jsp?id=<%=item.getId()%>"><img
src="images/<%=item.getPicture()%>" width="120" height="90"
border="1" /></a>
</dt>
<dd class="dd_name"><%=item.getName()%></dd>
<dd class="dd_press">出版社:<%=item.getPress()%></dd>
<dd class="dd_price">价格:¥<%=item.getPrice()%></dd>
</dl>
</div> <!-- 商品循环结束 -->
<%
}
}
%>
求教求教