0
我想在訪問數據庫的表格中顯示ID。我的代碼正在運行,沒有任何錯誤。JSP頁面不顯示輸出
但代碼不顯示任何內容。只有Html頁面中的白色屏幕。
這裏是我的代碼:
<%@page import="java.sql.*" %>
<html>
<body>
<%
try
{
Connection con = null;
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
con=DriverManager.getConnection("jdbc:odbc:AccessDatabase", "", "");
Statement stmt = con.createStatement();
String str= "SELECT * FROM emp_table";
ResultSet rs = stmt.executeQuery(str);
while(rs.next())
{
%>
<%= rs.getInt("ID") %>
<%
}
rs.close();
stmt.close();
con.close();
}
catch(Exception e)
{
System.out.println(e);
}
%>
</body>
</html>
而(rs.hasnext)? –