我有如下的
的常规代码query.call(sqlString, [Sql.out(OracleTypes.CURSOR)]) { ResultSet cursor ->
while (cursor.next()) {
println cursor.getString("whatever")
}
但我想要做的是将整行加载到一个对象中。就像在这个例子中一样
sql.eachRow("Select * from Person") {
persons << new Person( it.toRowResult() )
}
考虑到我必须使用Oracle Out参数,我怎样才能从一个到另一个?