I am trying to create an SQLite DB using BlackBerry IDE. First I mount sdcard to a folder in my PC using simulator.
URI myURI = URI.create("file:///SDCard/Databases/" + "Test.db");
d = DatabaseFactory.create(myURI);
d.close();
After I run the code I get the exception
Path does not contains a proper root list. See FileSystemRegistry class for details
Anybody know what is the issue?
Can you try the below code without any changes please