我已将数据库合并到我的Blackberry应用程序中。当我启动应用程序时,数据库构建,并将值插入数据库。但是,当我改变班级时,即使用此
HelloBlackBerryScreen bbScreen = new HelloBlackBerryScreen();
UiApplication.getUiApplication().pushScreen(bbScreen);
this.invalidate();
当我重新加载上一课时,我得到了这个:
[0.0] FileIO:fileinfo start 5e2
[0.0] FileIO:info by name complete 5e2
[0.0] FileIO:fileinfo start 5e3
[0.0] FileIO:info by name complete 5e3
[0.0] FileIO:open start 5e4
[0.0] FileIO:open complete 5e4
[0.0] FileSystem:bad open status 12
[0.0] File system error (12)read error here
[0.0] No stack trace
当应用程序初始启动时,它会正确读取数据库,并在相关区域加载某些值,然后切换到另一个类,也可以访问数据库,然后切换回第一个类,我得到那个错误。我进入下一堂课时,我没有正确关闭数据库吗?
以下是我用来获取数据库值的代码:
public void getValues(){
try {
URI uri = URI.create("file:///SDCard/Databases/" + "database2.db");
sqliteDB = DatabaseFactory.open(uri);
Statement st = sqliteDB.createStatement("SELECT Signauto,SaveP FROM options");
st.prepare();
Cursor c = st.getCursor();
Row r;
int i = 0;
while(c.next())
{
r = c.getRow();
i++;
System.out.println(r.getString(0) + "HERE");
System.out.println(r.getString(1) + "HERE");
if(r.getString(0).equals("true")){
tickBoxes[1] = true;
//signAuto();
}
else{
tickBoxes[1] = false;
}
if(r.getString(1).equals("true")){
tickBoxes[0] = true;
setUserPass();
}
else{
tickBoxes[0] = false;
}
}
if (i==0)
{
System.out.println("No data in the options table.");
}
st.close();
sqliteDB.close();
}
catch ( Exception e ) {
System.out.println( e.getMessage() + "read error here");
e.printStackTrace();
}
}
答案 0 :(得分:2)
要尝试的一些事情。
将close语句移动到它们自己的catch块中,这样一个异常就不会阻止另一个语句关闭。
} finally {
try {
if (st!=null) st.close();
} catch (DatabaseException e) {
System.out.println( e.getMessage() + "read error here");
}
try {
if (sqliteDB!=null) sqliteDB.close();
} catch (DatabaseIOException e) {
System.out.println( e.getMessage() + "read error here");
}
}
同步访问数据库的方法,以便不会在另一个数据库中引起异常。