当前位置: 代码迷 >> SQL >> hibernate 2.0 + ms sql server 2000 的ResultSet有关问题
  详细解决方案

hibernate 2.0 + ms sql server 2000 的ResultSet有关问题

热度:27   发布时间:2016-05-05 13:05:44.0
hibernate 2.0 + ms sql server 2000 的ResultSet问题


hibernate.connection.driver_class=net.sourceforge.jtds.jdbc.Driver
hibernate.connection.url=jdbc:jtds:sqlserver://localhost:1433/strongipp;SelectMethod=cursor
hibernate.connection.username=sa
hibernate.connection.password=sa
hibernate.show_sql=true


<prop key="hibernate.dialect">net.sf.hibernate.dialect.SQLServerDialect</prop>


出错:ResultSet may only be accessed in a forward direction
原因是:光标不能往回移动。

jdbc访问模式的解决方法是:
connection.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);

请问,SSH框架下怎么解决?
1 楼 k7710 2007-03-05  
那个大哥,可以帮助解决一下吗?
2 楼 刑天战士 2007-03-05  
把那个selectMethod去掉
3 楼 k7710 2007-03-06  
没用的
4 楼 k7710 2007-03-08  
解决了,汗!
5 楼 刑天战士 2007-03-08  
怎么解决的?
  相关解决方案