When I query a database and receive a (forward-only, read-only) ResultSet back, the ResultSet acts like a list of database rows.
I am trying to find some way to trea
I didn't test it, but why wouldn't it work?
new Iterator[String] { def hasNext = resultSet.next() def next() = resultSet.getString(1) }.toStream