Disk I/O problem on my device

silvercover

Member
Licensed User
Longtime User
Hi,

My app works smooth on emulator and other devices. my device Android version is 2.3.4 and when I want to launch my app on it I get below error message. It wasn't like this from the beginning of development and happened after some tests!

attachment.php


I've also tried to uninstall and delete related database manually but problem still exists.

What should I do?
 

Attachments

  • screenshot_2012-06-18_1635.png
    screenshot_2012-06-18_1635.png
    29.1 KB · Views: 388

edgar_ortiz

Active Member
Licensed User
Longtime User
Sometimes, I had the same problem when I generate the application and had the database open.

Or when I get a copy form the device and the database is open by the application.

Tip.:
Now always close the database.

Regards,

Edgar
 
Upvote 0

silvercover

Member
Licensed User
Longtime User
Sometimes, I had the same problem when I generate the application and had the database open.

Or when I get a copy form the device and the database is open by the application.

Tip.:
Now always close the database.

Regards,

Edgar

Nice tip edgar_ortiz. from now on I double check my code to close database connection at right time.

But how can I get rid of current database? I already turned off/on my device and deleted db file. Is there any other footprints or temp files remaining somewhere that I am not aware of?

I just have one simple SQLite database attached to my app package.
 
Upvote 0

edgar_ortiz

Active Member
Licensed User
Longtime User
Is there any other footprints or temp files remaining somewhere that I am not aware of?

I just have one simple SQLite database attached to my app package.

In your SQLite database manager, make a script to check each table (a select is enough).

Regards

Edgar
 
Upvote 0
Top