浏览 3204 次
该帖已经被评为新手帖
|
|
---|---|
作者 | 正文 |
发表时间:2007-03-05
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框架下怎么解决? 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2007-03-05
那个大哥,可以帮助解决一下吗?
|
|
返回顶楼 | |
发表时间:2007-03-05
把那个selectMethod去掉
|
|
返回顶楼 | |
发表时间:2007-03-06
没用的
|
|
返回顶楼 | |
发表时间:2007-03-08
解决了,汗!
|
|
返回顶楼 | |
发表时间:2007-03-08
怎么解决的?
|
|
返回顶楼 | |