关于在jsp中mysql用变量查询 rs=stmt.executeQuery("select * from article where ");后面怎么写?

如果我在上个页面得到3个parameter,一个string类型,用变量str表示,两个int类型的数字,用be和ed表示,我想从数据库中选出符合条件的项,acticle... 如果我在上个页面得到3个parameter,一个string类型,用变量str表示,两个int类型的数字,用be和ed表示,我想从数据库中选出符合条件的项,acticle中有type对应str,year对应be和ed,实现形如rs=stmt.executeQuery("select * from article where type=str and year between be and ed)"就是要满足时间在be和ed之间,我用时间都是int类型只有年份,还要满足每条项中的type都是str的字符。
我是sql语句不会写,,完整的,
展开
 我来答
_张少
2011-06-14 · TA获得超过103个赞
知道答主
回答量:55
采纳率:0%
帮助的人:65.3万
展开全部
你不是都返回了数据了吗?接下来要做的就是用泛型集合去接受啊 下面是同类型的你i可以看一下
public ArrayList<emp> getAllEmp() {
ArrayList<emp> list=new ArrayList<emp>();
Connection con=this.getCon();
Statement ste=null;
ResultSet rs=null;
try {
ste=con.createStatement();
rs=ste.executeQuery("select * from emp");
while(rs.next()){
emp em=new emp(rs.getInt(1),rs.getString(2),rs.getString(3),rs.getInt(4));
list.add(em);

}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return list;
}
更多追问追答
追问
我是在jsp写,我是想问那个sql语句不会写rs=stmt.executeQuery("select * from article where type=str and year between be and ed)"这个是错的,我不知道怎么才能写好,会写显示的,谢谢你写了这么多
追答
JSP前台都是调用后天方法啊 你难道把方法都写着JSP页面中? rs=stmt.executeQuery("select * from article where type=str and year > be and year < ed) 换成这个语句试一下
匿名用户
2011-06-15
展开全部
在jsp中可以内嵌java语句,在<%%>之间可以像写java代码一样。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式