Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android使用SQLite數據庫的簡單實例

Android使用SQLite數據庫的簡單實例

編輯:關於Android編程

先畫個圖,了解下Android下數據庫操作的簡單流程:

1.首先,寫一個自己的數據庫操作幫助類,這個類繼承自Android自帶的SQLiteOpenHelper.

2.在自己的DAO層借助自己的Helper寫數據庫操作的一些方法

3.Activity調用DAO層的數據庫操作方法進行操作

下面例子是:

1.Helper

復制代碼 代碼如下:
package cn.learn.db.util;

import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.database.sqlite.SQLiteDatabase.CursorFactory;

public class DBHelper extends SQLiteOpenHelper {

 private final static String DB_NAME ="test.db";//數據庫名
 private final static int VERSION = 1;//版本號

 //自帶的構造方法
 public DBHelper(Context context, String name, CursorFactory factory,
   int version) {
  super(context, name, factory, version);
 }

 //為了每次構造時不用傳入dbName和版本號,自己得新定義一個構造方法
 public DBHelper(Context cxt){
  this(cxt, DB_NAME, null, VERSION);//調用上面的構造方法
 }

 //版本變更時
 public DBHelper(Context cxt,int version) {
  this(cxt,DB_NAME,null,version);
 }

 //當數據庫創建的時候調用
 public void onCreate(SQLiteDatabase db) {
  String sql = "create table student(" +
      "id integer primary key autoincrement," +
      "name varchar(20)," +
      "age int)";

  db.execSQL(sql);
 }

 //版本更新時調用
 public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
  String sql  = "update student ....";//自己的Update操作
  db.execSQL(sql);
 }

}

2.寫DAO層
復制代碼 代碼如下:
package cn.learn.db.dao;

import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import cn.learn.db.dao.domain.Student;
import cn.learn.db.util.DBHelper;

public class StudentDao {

 DBHelper helper = null;

 public StudentDao(Context cxt) {
  helper = new DBHelper(cxt);
 }

 /**
  * 當Activity中調用此構造方法,傳入一個版本號時,系統會在下一次調用數據庫時調用Helper中的onUpgrade()方法進行更新
  * @param cxt
  * @param version
  */
 public StudentDao(Context cxt, int version) {
  helper = new DBHelper(cxt, version);
 }

 // 插入操作
 public void insertData(Student stu) {
  String sql = "insert into student (name,age)values(?,?)";
  SQLiteDatabase db = helper.getWritableDatabase();
  db.execSQL(sql, new Object[] { stu.name, stu.age });
 }

 // 其它操作

}

完成這些,其它操作就簡單了....

另外,數據庫文件放在這個目錄

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