I am building cross platform applications using Phonegap. Additionally I use Lawnchair to store data in the local database.
My question is quite general. I install an application that I built for iPhone, Android and Blackberry, then create some items to store in the database. This is done without any problem on any platform, however I would like to delete the whole database so I delete the application and reinstall it. On iPhone and Android the database is cleared automatically, however on Blackberry the items are still stored in the database.
I know that I could use localStorage.clear() in my javascript code, however I need to achieve clearing the database without modifying my application.
So why is the database not deleted when I uninstall a Blackberry applocation?