runtime
2.0.0-alpha03
common
runtime
/
app.cash.sqldelight
/
ExecutableQuery
Executable
Query
common
abstract
class
ExecutableQuery
<
out
RowType
:
Any
>
(
mapper
:
(
SqlCursor
)
->
RowType
)
Content copied to clipboard
Functions
Properties
Inheritors
Functions
execute
Link copied to clipboard
common
abstract
fun
<
R
>
execute
(
mapper
:
(
SqlCursor
)
->
R
)
:
QueryResult
<
R
>
Content copied to clipboard
Execute the underlying statement. The resulting cursor is passed to the given block.
execute
As
List
Link copied to clipboard
common
fun
executeAsList
(
)
:
List
<
RowType
>
Content copied to clipboard
execute
As
One
Link copied to clipboard
common
fun
executeAsOne
(
)
:
RowType
Content copied to clipboard
execute
As
One
Or
Null
Link copied to clipboard
common
fun
executeAsOneOrNull
(
)
:
RowType
?
Content copied to clipboard
Properties
mapper
Link copied to clipboard
common
val
mapper
:
(
SqlCursor
)
->
RowType
Content copied to clipboard
Inheritors
Query
Link copied to clipboard