ResultSet RS_resultxtgg=connDbBean.executeQuery(sqlxtgg);
作者:互联网
<%
String sqlxtgg="select * from dx where leibie='系统公告'";
ResultSet RS_resultxtgg=connDbBean.executeQuery(sqlxtgg);
while(RS_resultxtgg.next())
{
out.print(RS_resultxtgg.getString("content"));
}
%>
String sqlxtgg="select * from dx where leibie='系统公告'";
——准备SQL查询语句,就是选择出所有类别为系统公告的记录
ResultSet RS_resultxtgg=connDbBean.executeQuery(sqlxtgg);
——执行查询,并得到结果数据集
while(RS_resultxtgg.next()) {
—— 用next()循环(或称 滚动)该结果集
out.print(RS_resultxtgg.getString("content"));
——获取content字段的内容,并输出
标签:executeQuery,RS,resultxtgg,ResultSet,sqlxtgg,next 来源: https://www.cnblogs.com/yunhemeihe/p/10848848.html