yahoo / squidb

SquiDB is a SQLite database library for Android and iOS
https://github.com/yahoo/squidb/wiki
Apache License 2.0
1.31k stars 132 forks source link

Locking enhancements #133

Closed sbosley closed 8 years ago

sbosley commented 8 years ago

This PR allows methods like close(), clear(), and recreate() to be called more safely in a multi-threaded environment. Calling these methods now acquires the exclusive lock, so that any ongoing transactions can finish before the DB is closed. (Open cursors may still abruptly be closed, however).

jdkoren commented 8 years ago

LGTM