我創建了一個標籤欄,當我第一次進入數據庫屏幕時出現這個代碼工作正常。但是,當我們去另一個選項卡上和數據庫屏幕選項卡上再去它拋出一個異常使用數據庫時出現「DatabaseIOException:文件系統錯誤(12)」?
net.rim.device.api.database.DatabaseIOException:文件系統錯誤(12)
我已經正確關閉數據庫。
我在最後block.Database是當我移動的標籤
這是我的代碼每次關閉關閉數據庫:
Database d = null;
URI _uri = null;
Statement st = null;
Cursor c = null;
try
{
_uri=URI.create("file:///SDCard/MyBudgetTracker.db");
if (DatabaseFactory.exists(_uri)) {
d=DatabaseFactory.openOrCreate(_uri,new DatabaseSecurityOptions(false));
st = d.createStatement("SELECT * FROM "+Globalvalue.planCategoryTable);
st.prepare();
c = st.getCursor();
Row r;
int i = 0;
while(c.next()) {
r = c.getRow();
r.getString(0);
i++;
}
if (i==0)
{
add(new RichTextField("No data in the User table."));
}
}
}catch (Exception e)
{
System.out.println(e.getMessage());
System.out.println(e);
e.printStackTrace();// TODO: handle exception
} finally {
try {
if (DatabaseFactory.exists(_uri)) {
if (c != null) {
c.close();
}if (st != null) {
st.close();
} if (d != null) {
d.close();
}
}
} catch (Exception e2) {
// TODO: handle exception
}
}
這是Android,不是? – 2012-04-24 06:58:14
當你關閉遊標或語句時,你可能會遇到另一個錯誤。由於所有的結束代碼都在同一個try/catch中,所以你有機會不關閉數據庫本身。 – 2012-04-24 08:08:34