我有一个databaseHandler。我需要计算表中的行数。应用因此错误而崩溃:android attempt to reopen an already-closed object sqlitedatabase
。
我只是在活动中使用此代码:
db.getContactsCount();
但是应用程序崩溃了。另外我想重置表(删除表行)。我添加了以下方法:
public void deleteTable() {
SQLiteDatabase db = this.getWritableDatabase();
db.delete("contacts", null, null);
}
它运作良好,但我不能使用这个:
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
// Drop older table if existed
db.execSQL("DROP TABLE IF EXISTS " + TABLE_CONTACTS);
// Create tables again
onCreate(db);
}
这是databasehandler:
public class DatabaseHandler extends SQLiteOpenHelper {
// All Static variables
// Database Version
private static final int DATABASE_VERSION = 1;
// Database Name
private static final String DATABASE_NAME = "contactsManager";
// Contacts table name
private static final String TABLE_CONTACTS = "contacts";
// Contacts Table Columns names
private static final String KEY_ID = "id";
private static final String KEY_NAME = "name";
private static final String KEY_PH_NO = "phone_number";
public DatabaseHandler(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
}
// Creating Tables
@Override
public void onCreate(SQLiteDatabase db) {
String CREATE_CONTACTS_TABLE = "CREATE TABLE " + TABLE_CONTACTS + "("
+ KEY_ID + " INTEGER PRIMARY KEY," + KEY_NAME + " TEXT,"
+ KEY_PH_NO + " TEXT" + ")";
db.execSQL(CREATE_CONTACTS_TABLE);
}
// Upgrading database
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
// Drop older table if existed
db.execSQL("DROP TABLE IF EXISTS " + TABLE_CONTACTS);
// Create tables again
onCreate(db);
}
/**
* All CRUD(Create, Read, Update, Delete) Operations
*/
// Adding new contact
void addContact(Contact contact) {
SQLiteDatabase db = this.getWritableDatabase();
ContentValues values = new ContentValues();
values.put(KEY_NAME, contact.getName()); // Contact Name
values.put(KEY_PH_NO, contact.getPhoneNumber()); // Contact Phone
// Inserting Row
db.insert(TABLE_CONTACTS, null, values);
db.close(); // Closing database connection
}
// Getting single contact
Contact getContact(int id) {
SQLiteDatabase db = this.getReadableDatabase();
Cursor cursor = db.query(TABLE_CONTACTS, new String[] { KEY_ID,
KEY_NAME, KEY_PH_NO }, KEY_ID + "=?",
new String[] { String.valueOf(id) }, null, null, null, null);
if (cursor != null)
cursor.moveToFirst();
Contact contact = new Contact(Integer.parseInt(cursor.getString(0)),
cursor.getString(1), cursor.getString(2));
// return contact
return contact;
}
// Getting All Contacts
public List<Contact> getAllContacts() {
List<Contact> contactList = new ArrayList<Contact>();
// Select All Query
String selectQuery = "SELECT * FROM " + TABLE_CONTACTS;
SQLiteDatabase db = this.getWritableDatabase();
Cursor cursor = db.rawQuery(selectQuery, null);
// looping through all rows and adding to list
if (cursor.moveToFirst()) {
do {
Contact contact = new Contact();
contact.setID(Integer.parseInt(cursor.getString(0)));
contact.setName(cursor.getString(1));
contact.setPhoneNumber(cursor.getString(2));
// Adding contact to list
contactList.add(contact);
} while (cursor.moveToNext());
}
// return contact list
return contactList;
}
// Updating single contact
public int updateContact(Contact contact) {
SQLiteDatabase db = this.getWritableDatabase();
ContentValues values = new ContentValues();
values.put(KEY_NAME, contact.getName());
values.put(KEY_PH_NO, contact.getPhoneNumber());
// updating row
return db.update(TABLE_CONTACTS, values, KEY_ID + " = ?",
new String[] { String.valueOf(contact.getID()) });
}
// Deleting single contact
public void deleteContact(Contact contact) {
SQLiteDatabase db = this.getWritableDatabase();
db.delete(TABLE_CONTACTS, KEY_ID + " = ?",
new String[] { String.valueOf(contact.getID()) });
db.close();
}
// Getting contacts Count
public int getContactsCount() {
String countQuery = "SELECT * FROM " + TABLE_CONTACTS;
SQLiteDatabase db = this.getReadableDatabase();
Cursor cursor = db.rawQuery(countQuery, null);
cursor.close();
// return count
return cursor.getCount();
}
public void Upgrade (SQLiteDatabase db, int oldVersion, int newVersion) {
String CREATE_CONTACTS_TABLE = "CREATE TABLE " + TABLE_CONTACTS + "("
+ KEY_ID + " INTEGER PRIMARY KEY," + KEY_NAME + " TEXT,"
+ KEY_PH_NO + " TEXT" + ")";
db.execSQL(CREATE_CONTACTS_TABLE);
}
// Deleting single contact
public void deleteTable() {
SQLiteDatabase db = this.getWritableDatabase();
db.delete("contacts", null, null);
}
}
答案 0 :(得分:19)
这是因为:
db.close();
:
void addContact(Contact contact)
public void deleteContact(Contact contact)
除非确实不打算再使用它,否则不应关闭与底层数据库的连接。
完成工作后使用SQLiteOpenHelper:close
。
此外,对getReadableDatabase()
和getWriteableDatabase()
的调用99%的时间都会返回相同的数据库对象,并且不重新初始化您手动关闭的数据库连接。
不要被这些方法名称所迷惑。
答案 1 :(得分:7)
我想建议你,在完成数据库工作之前不要关闭数据库对象。
SQLiteDatabase db;
db = this.getWritableDatabase();
or
db = this.getReadableDatabase();
以上两种方法都使用帮助程序类为我们提供数据库对象,并且使用此对象我们可以对数据库执行不同的操作。但在您的方案中,我认为您在完成数据库操作之前关闭了数据库对象。使用
完成所有操作后关闭db.close();
答案 2 :(得分:3)
onUpgrade是您对数据库进行更改(即添加表)时所以现在有一个新版本的数据库。您的:
private static final int DATABASE_VERSION = 1;
现在是
private static final int DATABASE_VERSION = 2;
因为数据库版本现在更高版本,所以调用OnUpgrade()方法并更新数据库。
答案 3 :(得分:3)
它基本上是因为cursor.close(); 因为在返回计数之前关闭了光标对象。
答案 4 :(得分:2)
我应该在关闭数据库之前定义int count = cursor.getCount();
。关闭数据库后似乎return cursor.getCount();
是无用的工作
最后在删除结束时删除db.close();
并删除方法是必要的
在处理程序中添加此代码代替了很多:
public void closeDB() {
SQLiteDatabase db = this.getReadableDatabase();
if (db != null && db.isOpen())
db.close();
}
在数据库使用结束时,在活动内部操作close
函数更好。感谢@Drew
我仍然无法理解onUpgrade
内部处理程序???