Skip to content

Commit 0d33634

Browse files
committed
Added note about pointer access change
1 parent 411f31f commit 0d33634

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

sqliter-driver/src/nativeCommonMain/kotlin/co/touchlab/sqliter/DatabaseConnection.kt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ interface DatabaseConnection {
2626
fun endTransaction()
2727
fun close()
2828
val closed:Boolean
29+
30+
// Added here: https://github.com/touchlab/SQLiter/pull/73
31+
// I refactored a lot of the API to be internal but some clients need access to the underlying pointer.
32+
// This call may get moved in the future, or changed in some way, but some calling clients do need access to the
33+
// sqlite structures, or (possibly) some way to accomplish what the direct access is doing.
2934
fun getDbPointer(): SqliteDatabasePointer
3035
}
3136

0 commit comments

Comments
 (0)