我正在使用Netbeans并且我想将ResultSet结果存储到Integer变量中,我可以知道它是否可能吗?
目前我正在尝试各种方法将其存储在变量中,以便我可以在JSP页面本身上进行比较。
<%
int no=1;
while(rst.next()){
%>
<tr>
<td><%=no%></td>
<td><%=rst.getString("VERIFYCODE")%></td>
<%String code= request.getParameter("name"); %>
<%if(rst.getString("VERIFYCODE")== code){
//return a true/false if possible, or redirect to another jsp page
}
答案 0 :(得分:0)
如果您想从Integer
获得ResultSet
值,请使用rst.getInt("VERIFYCODE")
方法或Integer.parseInt(rst.getString("VERIFYCODE"))
。