SSH分页时遇到数据库错误
java.sql.SQLException:[Microsoft][SQLServer2000DriverforJDBC][SQLServer]第1行:'limit'附近...
java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]第 1 行: 'limit' 附近有语法错误。
public List getProductByPage(Page page) {
System.out.println(page.getBeginIndex()+"__________");
System.out.println(page.getEveryPage()+"+++++++++++++++");
Query query = this.getSession().createQuery("from sccp.reggie.pojo.StudentBean");
query.setFirstResult(0);
query.setMaxResults(3);
return query.list();
这是我相应的方法
是啊,我刚弄明白SQLServer不能用limit可是我把它改成top也是不行
String hql = "select top "
+ page.getEveryPage()
+ " from StudentBean where StudentBean.studentid not in (select top "
+ page.getBeginIndex()
+ " StudentBean.studentid from StudentBean";
方言改成org.hibernate.dialect.SQLServerDialect了
我是这样写的,我提高分数了谢谢了啊 展开
public List getProductByPage(Page page) {
System.out.println(page.getBeginIndex()+"__________");
System.out.println(page.getEveryPage()+"+++++++++++++++");
Query query = this.getSession().createQuery("from sccp.reggie.pojo.StudentBean");
query.setFirstResult(0);
query.setMaxResults(3);
return query.list();
这是我相应的方法
是啊,我刚弄明白SQLServer不能用limit可是我把它改成top也是不行
String hql = "select top "
+ page.getEveryPage()
+ " from StudentBean where StudentBean.studentid not in (select top "
+ page.getBeginIndex()
+ " StudentBean.studentid from StudentBean";
方言改成org.hibernate.dialect.SQLServerDialect了
我是这样写的,我提高分数了谢谢了啊 展开
3个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询