slick.jdbc.ResultSetInvoker
See theResultSetInvoker companion object An invoker which calls a function to retrieve a ResultSet. This can be used
for reading information from a java.sql.DatabaseMetaData object which has
many methods that return ResultSets.
For convenience, if the function returns null, this is treated like an
empty ResultSet.
Attributes Companion: object Source: ResultSetInvoker.scala Graph Reset zoom Hide graph Show graph
Supertypes class Object
trait Matchable
class Any
Self type Members list Concise view
Value members
Execute the statement and return a CloseableIterator of the converted
results. The iterator must either be fully read or closed explicitly.
Execute the statement and return a CloseableIterator of the converted
results. The iterator must either be fully read or closed explicitly.
Attributes maxRows Maximum number of rows to read from the result (0 for unlimited).
Source: ResultSetInvoker.scala
Execute the statement and return a fully materialized collection.
Execute the statement and return a fully materialized collection.
Attributes Inherited from: Invoker Source: Invoker.scala
Execute the statement and ignore the results.
Execute the statement and return the first row of the result set.
If the result set is empty, a NoSuchElementException is thrown.
Execute the statement and return the first row of the result set.
If the result set is empty, a NoSuchElementException is thrown.
Attributes Inherited from: Invoker Source: Invoker.scala
Execute the statement and return the first row of the result set wrapped
in Some, or None if the result set is empty.
Execute the statement and return the first row of the result set wrapped
in Some, or None if the result set is empty.
Attributes Inherited from: Invoker Source: Invoker.scala
Execute the statement and call f for each converted row of the result set.
Execute the statement and call f for each converted row of the result set.
Attributes maxRows Maximum number of rows to read from the result (0 for unlimited).
Inherited from: Invoker Source: Invoker.scala