【发布时间】:2014-08-28 23:54:17
【问题描述】:
代码很简单,不知道为什么不行。
DB.withConnection(implicit connection => {
val count: Long = SQL("select count(*) from Country").as(scalar[Long].single)
println(count)
})
错误信息是"java.sql.SQLException: Invalid operation for forward only resultset : isLast"
build.sbt中使用的库:
libraryDependencies += "com.typesafe.play" % "anorm_2.10" % "2.4.0-M1"
libraryDependencies += "commons-dbcp" % "commons-dbcp" % "1.4"
libraryDependencies += "com.oracle" % "ojdbc14" % "11.1.0.7"
在 Anorm 2.1 下可以正常工作,但我不知道为什么 2.4 会抛出这个异常
在此先感谢
【问题讨论】: