Android sqlite database error: database is locked code 5

Hi @mikekara,

Are startCBLite() method and Manager variable defined in Activity? Try to move Manager and Database initializer in Application.java like ToDoLite sample.

I guess SQLite Lock issue could be caused by accessing sqlite database file from multiple SQLite Java instances. If this is issue, above solution could solve the problem.

Thanks.