Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android數據庫存取對象--CupBoard

Android數據庫存取對象--CupBoard

編輯:關於Android編程

有一段時間沒來寫點什麼了,這次來給大家介紹一個能在數據庫中存取實體對象的庫:cupboard。
在Android開發中,使用數據庫存取數據時,我們最先而且必定要使用的就是 SQLite 了,相信現在還有很多開發者使用數據庫存取時
使用的是最基礎的一些語句,如《android sqlitedatabase 應用》一文中所介紹的一樣。當然,這樣寫並沒有什麼不妥。現在隨著學習的
深入,本人已經不再使用這種方式來進行數據庫的操作,而是改用GreenDao這個開源庫。在Android開發上來說,它可能是最快的ORM,
並且性能高、占用內存小。它將數據對象映射到數據庫表中,然後你可以使用它提供的一個簡單面向對象API對它進行增刪改查。具體有關
GreenDao的使用不是本文內容,暫不介紹。下面繼續本文的重點:CupBoard
CupBoard,它的主要目標就是在SQLite數據庫中存儲Objects。接下來為您詳細介紹它是如何使用盡可能少的SQL語句來進行存儲對象

的。不管你之前是使用SQLiteOpenHelper還是第三方庫來進行數據庫操作,本文都非常適合你。

public class Book {
   public Long _id;
   public String title;
   public Author author;
   public Date publishDate;
}
接下來,我們將Book這個實體存儲到數據庫中。(變量名對應數據庫中的字段名)

使用CupBoard來操作數據庫,要用withDatabase()這個方法,並且CupBoard要求須提前將實體注入到SQLiteOpenHelper,我們使用

static initializer block 在這裡也許是最好的方法。下面看例子:

首先創建數據庫:

public class CupboardSQLiteOpenHelper extends SQLiteOpenHelper {
    private static final String DATABASE_NAME = "myapp.db";
    private static final int DATABASE_VERSION = 1;

    static {
        // register our models
        cupboard().register(Book.class);
        cupboard().register(Author.class);
    }

    public CupboardSQLiteOpenHelper(Context context) {
        super(context, DATABASE_NAME, null, DATABASE_VERSION);
    }

    @Override
    public void onCreate(SQLiteDatabase db) {
        // this will ensure that all tables are created
        cupboard().withDatabase(db).createTables();
        // add indexes and other database tweaks
    }

    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
        // this will upgrade tables, adding columns and new tables.
        // Note that existing columns will not be converted
        cupboard().withDatabase(db).upgradeTables();
        // do migration work
    }
}
需要注意的是, 從上面代碼看到,我們只添加了一個static初始化塊和

cupboard().withDatabase(db).createTables();

cupboard().withDatabase(db).upgradeTables();

而沒有任何的繼承(extends)和重寫(override)。如何你使用的不是SQLiteOpenHelper,同樣你也要添加一個static初始化塊和update、upgrade

存儲Objects

存儲數據時使用withDatabase(db).put()方法。

Book book = ...
long id = cupboard().withDatabase(db).put(book);

讀取Objects

通過id獲得一條數據:讀取id為12的數據對象,如果沒有返回null。

Book book = cupboard().withDatabase(db).get(Book.class, 12L);
我們還可以使用query()來遍歷數據庫

// get the first book in the result
Book book=cupboard().withDatabase(db).query(Book.class).get();
// Get the cursor for this query
Cursor books=cupboard().withDatabase(db).query(Book.class).getCursor();
try{
     // Iterate books
     QueryResultIterableitr=cupboard().withDatabase(db).query(Book.class).iterate();
     for(Book book:itr){
      // do something with book
      }
}finally{
        // close the cursor
        itr.close();
}
// Get the first matching book with title Android
Book book=cupboard().withDatabase(db).query(Book.class).withSelection("title = ?","Android").get();

更改Objects

要是更改整個實體對象,我們可以用put()方法,若是更改一個實體的部分或者是一次更改多個實體,這時使用update().

ContentValues values = new ContentValues(1);
values.put("title", "Android")
// update all books where the title is 'android'
cupboard().withDatabase(db).update(Book.class, values, "title = ?", "android");

刪除Objects

刪除和讀get()、寫put()一樣簡單

// by id
cupboard().withDatabase(db).delete(Book.class, 12L);
// by passing in the entity
cupboard().withDatabase(db).delete(book);
// or by selection
cupboard().withDatabase(db).delete(Book.class, "title = ?", "android");
提示與技巧

1、某些情況下,如果你需要調用SQLiteDatabase,可以將任何注冊過的實體轉換為ContentValues對象

ContentValues values = cupboard().withEntity(Book.class).toContentValues(book);
// you can also reuse ContentValues
values = cupboard().withEntity(Book.class).toContentValues(book, values);
2、讀一個數據庫進行多個操作
public void doDatabaseWork(SQLiteDatabase database, Book book) {
	DatabaseCompartment dbc = cupboard().withDatabase(database);
	dbc.put(book);
	dbc.update(Book.class, "title = ?", "android");
}
3、下載Jar or 使用Maven


    nl.qbusict
    cupboard
    1.0.6
Gradle

compile 'nl.qbusict:cupboard:1.0.6'

更多內容:https://bitbucket.org/Jabin/cupboard or blog.csdn.net/zjbpku






  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved