王立平--SQLite,SQLiteOpenHelper的簡單應用

來源:互聯網
上載者:User

標籤:sqlite   android平台   資料庫   sqliteopenhelper   

Android平台提供給我們一個資料庫輔助類來建立或開啟資料庫,這個輔助類繼承自SQLiteOpenHelper類,在該類的構造器中,調用Context中的方法建立並開啟一個指定名稱的資料庫物件。繼承和擴充SQLiteOpenHelper類主要做的工作就是重寫以下兩個 方法。

public class MySQLiteHelper extends SQLiteOpenHelper {
public MySQLiteHelper(Context context, String name, CursorFactory factory,
int version) {
super(context, name, factory, version);
// TODO Auto-generated constructor stub
}
//資料庫首次建立時執行此方法,一般講建立表等初始化工作放在此處
//execSQL建立表
@Override
public void onCreate(SQLiteDatabase db) {
// TODO Auto-generated method stub
//建立表
String sql="create table if not exists hero_info("+ "id integer primary key,"+ "name varchar,"+ "level integer)";
db.execSQL(sql);
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
// TODO Auto-generated method stub

}

MainActivity.java

package com.example.sqllite;
import android.app.Activity;
import android.content.ContentValues;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase; 
import android.graphics.Color;
import android.os.Bundle;
import android.widget.TextView; 
public class MainActivity extends Activity {
private TextView tv;
private MySQLiteHelper h;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        init();
    }
    public void init(){
     tv=(TextView) findViewById(R.id.tv);
    h=new MySQLiteHelper(this, "my.db", null, 1);
    insertAndUpdateData(h);
    //查詢資料
    String result = queryData(h);
    tv.setTextColor(Color.RED);
    tv.setTextSize(20.0f);
    tv.setText("名字\t等級\n"+result);
   
   
    }
    
 
private void insertAndUpdateData(MySQLiteHelper helper) {
// TODO Auto-generated method stub

//調用getReadableDatabase 方法返回的並不總是唯讀資料庫物件,
//一般來說該方法和getWriteableDatabase 方法的返回情況相同,
//只有在資料庫僅開放唯讀許可權或磁碟已滿時才會返回一個唯讀資料庫物件。

    SQLiteDatabase db = helper.getWritableDatabase();
    //使用execSQL方法向表中插入資料
    db.execSQL("insert into hero_info(name,level) values(‘bb‘,0)");
    //使用insert方法向表中插入資料
    ContentValues values = new ContentValues();
    values.put("name", "xh");
    values.put("level", 5);
    //調用方法插入資料
    db.insert("hero_info", "id", values);
    //使用update方法更新表中的資料
    //清空ContentValues對象
    values.clear();
    values.put("name", "xh");
    values.put("level", 10);
    //更新xh的level 為10
    db.update("hero_info", values, "level = 5", null);
    //關閉SQLiteDatabase對象
    db.close();


//從資料庫中查詢資料
public String queryData(MySQLiteHelper myHelper){
String result = "";
//獲得資料庫物件
SQLiteDatabase db = myHelper.getReadableDatabase();
//查詢表中的資料
Cursor cursor = db.query("hero_info", null, null, null, null, null, "id asc");
//擷取name列的索引
int nameIndex = cursor.getColumnIndex("name");
//擷取level列的索引
int levelIndex = cursor.getColumnIndex("level");
for (cursor.moveToFirst();!(cursor.isAfterLast());cursor.moveToNext()) {
result = result + cursor.getString(nameIndex)+ "\t\t";
result = result + cursor.getInt(levelIndex)+"\n";
}
cursor.close();//關閉結果集
db.close();//關閉資料庫物件
return result;
}
@Override
protected void onDestroy() {
SQLiteDatabase db = h.getWritableDatabase();//擷取資料庫物件
//刪除hero_info表中所有的資料 傳入1 表示刪除所有行------>點擊back按鈕
db.delete("hero_info", "1", null);
super.onDestroy();
}


王立平--SQLite,SQLiteOpenHelper的簡單應用

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.