We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7897333 commit 0fd3beeCopy full SHA for 0fd3bee
core/src/commonMain/kotlin/com/powersync/db/SqlCursor.kt
@@ -19,13 +19,6 @@ public interface SqlCursor {
19
public val columnCount: Int
20
21
public val columnNames: Map<String, Int>
22
-
23
- public fun asMap(): Map<String, Any?> =
24
- buildMap {
25
- columnNames.forEach { (name, index) ->
26
- put(name, getString(index))
27
- }
28
29
}
30
31
private inline fun <T> SqlCursor.getColumnValue(
0 commit comments