Execute the statement and return a fully materialized collection.
Execute the statement and return a fully materialized collection.
Execute the statement and ignore the results.
Execute the statement and ignore the results.
Execute the statement and return the first row of the result set.
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 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.
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.
Maximum number of rows to read from the result (0 for unlimited).
Execute the statement and return a CloseableIterator of the converted results.
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.
Execute the statement and return a CloseableIterator of the converted results. The iterator must either be fully read or closed explicitly.
Maximum number of rows to read from the result (0 for unlimited).
Invoke the statement and return the raw results.
Execute the statement and return a fully materialized collection of the specified type.
Execute the statement and return a fully materialized collection of the specified type.
(Since version 3.0) Invoker convenience features will be removed. Invoker is intended for low-level JDBC use only.
Execute the statement and feed the converted rows of the result set into an iteratee.
Execute the statement and feed the converted rows of the result set into an iteratee.
(Since version 3.0) Use Reactive Streams in the new Action-based API instead of Slick iteratees
If the result type of this Invoker is of the form Option[T], execute the statement and return the first row of the result set, or None if the result set is empty.
If the result type of this Invoker is of the form Option[T], execute the statement and return the first row of the result set, or None if the result set is empty.
(Since version 2.1) Use .first.flatten instead of .firstFlatten
Execute the statement and left-fold the converted rows of the result set.
Execute the statement and left-fold the converted rows of the result set.
(Since version 3.0) Invoker convenience features will be removed. Invoker is intended for low-level JDBC use only.
Execute the statement and return an immutable and fully materialized list of the results.
Execute the statement and return an immutable and fully materialized list of the results.
(Since version 3.0) Invoker convenience features will be removed. Invoker is intended for low-level JDBC use only.
Create a new Invoker which applies the mapping function f to each row of the result set.
Create a new Invoker which applies the mapping function f to each row of the result set.
(Since version 3.0) Invoker convenience features will be removed. Invoker is intended for low-level JDBC use only.
(Since version 3.0) Invoker convenience features will be removed. Invoker is intended for low-level JDBC use only.
An invoker which executes an SQL statement through JDBC.