Re: [android-developers] Error opening sqlite database

2011-09-27 Thread ΠΑΣΧΑΛΗΣ ΠΛΙΑΧΑΣ
Yes you are correct. I changed the "PRAGMA journal_mode=DELETE" and it worked. Thanks 2011/9/27 Kostya Vasilyev > Your database probably has WAL mode enabled (write-ahead logging). This is > a new (as of 3.7.0) transaction logging mode, which is not compatible with > earlier SQLite versions. > >

Re: [android-developers] Error opening sqlite database

2011-09-27 Thread Kostya Vasilyev
Your database probably has WAL mode enabled (write-ahead logging). This is a new (as of 3.7.0) transaction logging mode, which is not compatible with earlier SQLite versions. You can check the mode by running "PRAGMA journal_mode". If the result is WAL, disable it by using "PRAGMA journal_mode

[android-developers] Error opening sqlite database

2011-09-27 Thread ΠΑΣΧΑΛΗΣ ΠΛΙΑΧΑΣ
I created a sqlite database with sqlite manager firefox addon. I used this in my application on HTC legend updated to 2.2 version. It worked fine. The same database i used it with the same app on a new HTC Sensation Z710e. I opened and closed the database on this smartphone and after that i transfe