ResultSet RS_resultxtgg=connDbBean.executeQuery(sqlxtgg);
Posted yunhemeihe
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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字段的内容,并输出
以上是关于ResultSet RS_resultxtgg=connDbBean.executeQuery(sqlxtgg);的主要内容,如果未能解决你的问题,请参考以下文章
关于对ResultSet 中next() 方法的描述及用法是啥啊