- 浏览: 815 次
- 性别:
- 来自: 汨罗
最新评论
文章列表
jstl循环
<%@ page contentType="text/html; charset=GBK" %>
<%@ page import="java.util.*" %>
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<html>
<head>
<title>JSTL测试1--c:forEach循环</title>
</head& ...
转自:http://hi.baidu.com/streamlinlin/item/a29d99d69251a4cc1b72b412
在HQL+MYSQL中不能直接在查询语句中使用LIMIT进行检索,正确方法为:
Query query = session.createQuery(hql);
query.setFirstResult(pageroffset);
query.setMaxResults(e);
pageroffset:开始检索的位置,int
e:返回最大记录行,int
执行此HQL后在生成的查询语句中会自动加上limit ?。