JSP中的数据库操作(2):JSP页面中的数据库查询(3)
来源:未知 责任编辑:责任编辑 发表时间:2015-01-01 13:16 点击:次
//连接MySQL数据库
Class.forName("com.mysql.jdbc.Driver").newInstance();
String url="jdbc:mysql://localhost:3306/news";
String user="root";
String password="1234";
Connection conn = DriverManager.getConnection(url, user, password);
Statement st = conn.createStatement();
%>
<table >
<tr>
<td width="174" id="title">标题</td>
<td width="449" id="title">内容</td>
<td width="161" id="title">时间</td>
</tr>
<%
//把表格第二行的显示放到while循环中,就可以根据查询结果画出表格了。参数则放在<td>内的相应位置。
ResultSet rs = st.executeQuery("SELECT * FROM data ORDER BY id DESC LIMIT 10");
while(rs.next()){%>
<tr>
<td width="174" ><%=rs.getString("title") %></td>
<td width="449" ><%=rs.getString("content") %></td>
<td width="161"><%=rs.getString("time") %></td>
</tr>
<%}
//注意"}"的位置 %>
</table>
<%
rs.close();
conn.close();
%>
</body>
</html>
作者:shirenfeigui
相关新闻>>
- 发表评论
-
- 最新评论 更多>>