Skip to content

Commit

Permalink
Added note about pointer access change
Browse files Browse the repository at this point in the history
  • Loading branch information
kpgalligan committed Jun 24, 2022
1 parent 411f31f commit 0d33634
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ interface DatabaseConnection {
fun endTransaction()
fun close()
val closed:Boolean

// Added here: https://github.com/touchlab/SQLiter/pull/73
// I refactored a lot of the API to be internal but some clients need access to the underlying pointer.
// This call may get moved in the future, or changed in some way, but some calling clients do need access to the
// sqlite structures, or (possibly) some way to accomplish what the direct access is doing.
fun getDbPointer(): SqliteDatabasePointer
}

Expand Down

0 comments on commit 0d33634

Please sign in to comment.