PowerSync Kotlin
Toggle table of contents
common
Platform filter
common
Switch theme
Search in API
PowerSync Kotlin
PowerSync Core
/
com.powersync.db.internal
/
PowerSyncTransaction
Power
Sync
Transaction
interface
PowerSyncTransaction
:
ConnectionContext
Members
Functions
execute
Link copied to clipboard
abstract
fun
execute
(
sql
:
String
,
parameters
:
List
<
Any
?
>
?
=
listOf()
)
:
Long
get
Link copied to clipboard
abstract
fun
<
RowType
:
Any
>
get
(
sql
:
String
,
parameters
:
List
<
Any
?
>
?
=
listOf()
,
mapper
:
(
SqlCursor
)
->
RowType
)
:
RowType
get
All
Link copied to clipboard
abstract
fun
<
RowType
:
Any
>
getAll
(
sql
:
String
,
parameters
:
List
<
Any
?
>
?
=
listOf()
,
mapper
:
(
SqlCursor
)
->
RowType
)
:
List
<
RowType
>
get
Optional
Link copied to clipboard
abstract
fun
<
RowType
:
Any
>
getOptional
(
sql
:
String
,
parameters
:
List
<
Any
?
>
?
=
listOf()
,
mapper
:
(
SqlCursor
)
->
RowType
)
:
RowType
?