SQLite Forum

SIGBUS in sqlite
Login
It might if you delete a db file while SQLite has it open. Something like:

1. Open handle A,
2. Read from handle A,
3. Delete db file with java interface,
4. Open handle B,
5. Read from handle B,
6. Close handle A.
7. Read from handle B.

Will produce the crash you're seeing on Linux in the final step. There are probably other recipes.