我正在为Blackberry设备开发应用程序。这个程序包含一个数据库。由于API是在最后一个API版本上提供的,因此我决定使用SQLite。
我跟踪了我可以在任何地方找到的每个样本,但无论发生什么,我的数据库仍为空,我收到“DatabaseIOException:File system error(12)”。
我应该补充说我目前正在使用模拟器。
以下是相关代码:
// Creation of the database
private static final String DATABASE_NAME = "myDatabase.db";
private static final String STORAGE_LOCATION = "/store/databases/myApp/";
try
{
// Create URI
URI uri = URI.create(STORAGE_LOCATION + DATABASE_NAME);
// Open or create a plain text database. This will create the
// directory and file defined by the URI (if they do not already exist).
db = DatabaseFactory.openOrCreate(uri, new DatabaseSecurityOptions(false));
// Close the database in case it is blank and we need to write to the file
db.close();
this.CreateTable();
}
catch ( Exception e )
{
System.out.println( e.getMessage() );
e.printStackTrace();
}
表创建方法:
public void CreateTable(){
URI uri;
try {
uri = URI.create(STORAGE_LOCATION + DATABASE_NAME);
// Create a new DatabaseOptions object forcing foreign key constraints
DatabaseOptions databaseOptions = new DatabaseOptions();
databaseOptions.set( "foreign_key_constraints", "on" );
// Open the database
db = DatabaseFactory.open(uri, databaseOptions);
} catch (ControlledAccessException e) {
e.printStackTrace();
} catch (DatabaseIOException e) {
e.printStackTrace();
} catch (DatabasePathException e) {
e.printStackTrace();
} catch (IllegalArgumentException e1) {
e1.printStackTrace();
} catch (MalformedURIException e1) {
e1.printStackTrace();
} catch (DatabaseOptionsSetInvalidKeyException e) {
e.printStackTrace();
} catch (DatabaseOptionsSetInvalidValueException e) {
e.printStackTrace();
}
Statement st;
try {
st = this.getDb().createStatement("CREATE TABLE '" + TABLE_NAME1 +
"'('id' PRIMARY KEY, 'libContexte' TEXT, 'libelle' TEXT, 'xcoord' REAL, "+
"'ycoord' REAL)");
st.prepare();
st.execute();
} catch (DatabaseException e) {
e.printStackTrace();
}
try {
db.close();
} catch (DatabaseIOException e) {
e.printStackTrace();
}
}
感谢您的帮助,我真的不知道问题的来源。
答案 0 :(得分:1)
只是一个想法 - 并非每个设备都支持在设备内存(Locations of SQLite database files)上创建数据库,因此请尝试使用SDCard(同时确保模拟器具有SD卡)。
答案 1 :(得分:1)
我假设您正在使用适当的设备或设备模拟器在内置存储上存储数据库。这将是9800或9550.获得“错误12”的一个原因是数据库已经打开。您如何保护数据库初始化不被执行多次?