如何讓我的數據庫在創建新行時自動刪除ID最小的條目? 我希望在表格中有10行以上的情況下完成此操作。自動刪除SQLite數據庫中的條目(android)
這裏是我的createEntry方法:
public long createEntry(String latitude, String longitude) {
// TODO Auto-generated method stub
ContentValues cv = new ContentValues();
cv.put(KEY_LATITUDE, latitude);
cv.put(KEY_LONGITUDE, longitude);
return myDatabase.insert(DATABASE_TABLE, null, cv);
}
創建數據庫觸發器。 – 2012-07-15 22:32:55