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
怎么解决的?