使用SQLite資料庫儲存資料 4 刪除資料記錄

2022-04-20 16:37:38 字數 475 閱讀 6095

刪除資料記錄

當從uitableview中刪除一行記錄時,將呼叫commiteditingstyle方法。

- (void)tableview:(uitableview *)tableview commiteditingstyle:(uitableviewcelleditingstyle)editingstyle forrowatindexpath:(nsindexpath *)indexpath

}- (void)removenotebook:(notebookinfo *)notebookinfo

在上面的**中,我們實現了從3個地方刪除對應的資料記錄:

(1) 從sqlite資料表中刪除對應的記錄;

(2) 從notearray 陣列中刪除對應的notebookinfo物件元素;

(3) 從uitableview 中刪除對乙個的資料行;

使用SQLite資料庫儲存資料

public class dbhandler extends sqliteopenhelper override public void oncreate sqlitedatabase db override public void onupgrade sqlitedatabase db,int o...

SQLite資料庫儲存

建立資料庫 建立資料庫,首先我們需要建立乙個幫助類繼承sqliteopenhelper類,sqliteopenhelper類是乙個抽象類,其中有兩個抽象方法,oncreate upgrade 我們應該在自己的抽象類裡面實現這兩個抽象方法,並在其中事項建立資料庫和公升級資料庫的邏輯。sqliteope...

SQLite儲存 建立資料庫

從昨天晚上六點到今天早上八點全班同學一直都在別墅趴 玩得好開心 此乃本人的學習筆記 我只是將csdn部落格做為乙個記錄學習的地方 so.1.自己重寫乙個類繼承至sqliteopenhelper 2.用繼承的類建立乙個物件 3.使用此物件呼叫getwritabledatabase 或getreadab...