我正在从结果集中的 JSP 中的数据库中检索数据。ResultSet 不为空,但未在 html 标签中显示数据,即 h3 为空
ResultSet rs = null;
String sqlStr;
sqlStr = "SELECT * from IDEAS";
Statement stmt = con.createStatement();
rs = stmt.executeQuery(sqlStr);
<% while (rs.next()) { %>
<h3> <% rs.getString("heading"); %></h3>
<% } %>
所有其他语句,如 insert , delete 都在工作。