toggle menu
SQLDelight
2.0.2
common
switch theme
search in API
runtime
/
app.cash.sqldelight
/
ExecutableQuery
Executable
Query
abstract
class
ExecutableQuery
<
out
RowType
:
Any
>
(
val
mapper
:
(
SqlCursor
)
->
RowType
)
Inheritors
Query
Members
Constructors
Executable
Query
Link copied to clipboard
constructor
(
mapper
:
(
SqlCursor
)
->
RowType
)
Properties
mapper
Link copied to clipboard
val
mapper
:
(
SqlCursor
)
->
RowType
Functions
execute
Link copied to clipboard
abstract
fun
<
R
>
execute
(
mapper
:
(
SqlCursor
)
->
QueryResult
<
R
>
)
:
QueryResult
<
R
>
Execute the underlying statement. The resulting cursor is passed to the given block.
execute
As
List
Link copied to clipboard
fun
executeAsList
(
)
:
List
<
RowType
>
execute
As
One
Link copied to clipboard
fun
executeAsOne
(
)
:
RowType
execute
As
One
Or
Null
Link copied to clipboard
fun
executeAsOneOrNull
(
)
:
RowType
?