android資料庫的建立

2021-06-21 05:33:26 字數 653 閱讀 4466

1、建立乙個資料庫開啟幫助類 繼承sqliteopenhelper

2、構造方法  設定資料庫檔案的名稱 設定游標工廠 null  資料庫的版本 1

/** context 上下文

* name 資料庫名稱

* curso***ctory 游標工廠 一般設定為null 預設游標工廠

* version 資料庫的版本    版本號從1開始的

* */

public notesqliteopenhelper(context context)

3、填寫oncreate()方法 資料庫表結構的初始化  資料庫第一次被建立的時候 呼叫方法

public void onupgrade(sqlitedatabase db, int oldversion, int newversion)

4、//getcontext()這個方法是獲取到測試框架的乙個虛擬的模擬的假的上下文

notesqliteopenhelper helper = new notesqliteopenhelper(this.getcontext());

//只有執行了getwriteabledatabase() 或者getreadabledatabase()的方法資料庫才會被建立

helper.getwritabledatabase();

android下資料庫的建立

思路 建立子類繼承sqliteopenhelper抽象類,通過該實現類的物件獲取可寫或可讀的資料庫。package com.example.sqllitedatabasetest import android.content.context import android.database.sqlit...

資料庫的建立

ios使用的資料庫 是 輕量級的sqlite 資料庫 裡面 實際上就是一張一張的table 開發中本地持久化儲存的 就是資料模型物件中的屬性資料 每張表中 每一列就是乙個字段 資料模型物件的屬性 類欄位 表中的每一行我們稱為 一條記錄 乙個資料模型物件的資訊 資料庫 要1.建立資料庫檔案 2.sql...

關於一些android資料庫的建立

主要是記筆記給自己看 直接上 private static final string db name account.db public context context sqlitedatabase db public dbhelper context context db sqlitedataba...