I get the following error when closing a sqlite database:
02-22 15:42:03.184: ERROR/SqliteDatabaseCpp(846): sqlite3_close(0x1ca0c0) failed: 27
What does it mean?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Typically I’d tell you to go looking here, but happens as it may – the error code you are getting (
27) happens to be a special little something added specifically for Android.More explictly, it’s defined like this:
Basically, this means you have crap that you have not yet called
#close()on – any prepared statements or similar perhaps (or InsertHelpers – they use them to).