android學習筆記48——SQLite

SQLitejava

SQLite試試一個嵌入式的數據庫引擎,專門用於資源有限的設備(如手機、PDA)上適量數據存取。mysql

SQLite支持絕大部分SQL92語法,一樣容許開發者使用SQL語句操做數據庫中的數據,但SQLite並不像Oracle、MySQL數據庫須要安裝、啓動服務進程,SQLite數據庫只是一個文件。android

從本質上來看,SQLite的操做方式只是一種更爲便捷的文件操做。sql

 

SQLiteDatebase數據庫

Android提供了SQLiteDatabase表明一個數據庫(底層就是一個數據庫文件),一旦應用程序得到了表明指定數據庫SQLiteDatabase對象,就可經過SQLiteDatabase對象來管理、操做數據庫了。app

SQLiteDatebase提供以下靜態方法來打開一個文件對應的數據庫:ide

1.static SQLiteDatebase openDatabase(String path,SQLiteDatebase.CursorFactory factory,int flags)——打開path文件所表明的SQLite數據庫;佈局

2.static SQLiteDatebase openOrCreateDatabase(File file,SQLiteDatebase.CursorFactory factory)——打開或建立file文件所表明的SQLite數據庫;this

3.static SQLiteDatebase openOrCreateDatabase(String path,SQLiteDatebase.CursorFactory factory)——打開或建立path文件所表明的SQLite數據庫;spa

在程序中獲取SQLiteDatebase對象後,便可調用SQLiteDatebase的以下方法來操做數據庫:

execSQL(String sql,Object[] bindArgs) 執行帶佔位符的SQL語句
execSQL(String sql) 執行SQL語句
insert(String table,String nullColumnHack,ContentValues values) 向執行表中插入數據
update(String table,ContentValues values,String whereClause,String[] whereArgs) 更新指定表中的特定數據
delete(String table,String whereClause,String[] whereArgs) 刪除指定表中的特定數據

Cursor query(String table,String[] columns,String selection,String[] selectonArgs,

String groupby,String having,String orderby)

對執行數據表執行排序

Cursor query(String table,String[] columns,String selection,String[] selectonArgs,

String groupby,String having,String orderby,String limit)

對執行數據表執行查詢。limit參數控制最多查詢記錄數量

(用於控制分頁的參數)

Cursor query(boolean distinct,String table,String[] columns,String selection,String[] selectonArgs,String groupby,String having,String orderby,String limit)

對指定表執行查詢操做,第一個參數控制是否去除重複值
rawQuery(String sql,String[] selectionAgrs) 執行帶佔位符的SQL語句
beginTransaction 開始事務
endTransaction   結束事務

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  

以上查詢方法都是返回一個Cursor對象,Android中的Cursor相似於JDBC的ResultSet,Cursor一樣提供了對應的方法來移動查詢結果的記錄指針,以下所示:

move(int offset) 將記錄指針向上/下移動指定的行數,offset爲正數就是向下移動,爲負數就是向上移動
boolean moveToFirst() 將記錄指針移動到第一行,若是移動成功返回true
boolean moveToLast() 將記錄指針移動到最後一行,若是移動成功返回true
boolean moveToNext() 將記錄指針移動到下一行,若是移動成功返回true
boolean moveToPisition(int position) 將記錄指針移動到指定的行,若是移動成功返回true
boolean moveToPrevious() 將記錄指針移動到上一行,若是移動成功返回true

 

 

 

 

 

 

一旦將記錄指針移動的指定行以後,就能夠調用Cursor的getXxx()方法獲取該行的指定列的數據。

 

建立數據庫和表

SQLiteDatebase可以使用靜態方法打開或建立數據庫以下:

SQLiteDatebase.openOrCreateDatebase("/mnt/db/temp.db3",null);

——沒有指定SQLiteDatebase.CursorFactory factory,該參數是一個用於返回Cursor工廠,若是指定該參數爲null,則意味着使用默認的工廠。

注意:

SQLiteDatebase.openOrCreateDatebase("/mnt/db/temp.db3",null);可返回一個SQLiteDatebase對象,

該對象的execSQL可執行任意的SQL語句,所以程序可經過以下代碼建立數據庫表:

sql="create table userInfo (id integer primary key,name varchar(50))";

db.execSQL(sql);

 

使用SQL語句操做SQLite數據庫

如以上所提,SQLiteDatebase的execSQL方法可執行任意SQL語句,包括帶佔位符的SQL語句。

但因爲該方法沒有返回值,通常用於執行DDL語句或DML語句,若是須要執行查詢語句,則可調用SQLiteDatebase的rawQuery(String sql,String[] selecttionArgs)方法.

Eg:以下代碼可執行DML語句:

db.execSQL("insert into tableInfo values(null,?,?)",new String[]{title,content});

sql組成:

  DDL:數據庫模式定義語言,關鍵字:create

  DML:數據操縱語言,關鍵字:Insert、delete、update

  DCL:數據庫控制語言 ,關鍵字:grant、remove

  DQL:數據庫查詢語言,關鍵字:select

實例以下:

佈局文件==》main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity" >

    <EditText
        android:id="@+id/editOne"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="110" />

    <EditText
        android:id="@+id/editTwo"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="119" />

    <Button
        android:id="@+id/btnInsert"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="insert" />

    <ListView
        android:id="@+id/lv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
    
</LinearLayout>

==>line.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

    <TextView
        android:id="@+id/tv1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
        <TextView
        android:id="@+id/tv2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</LinearLayout>

實現代碼
package com.example.mysqlite1;

import android.os.Bundle;
import android.app.Activity;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.util.Log;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ListView;
import android.widget.SimpleCursorAdapter;

public class MainActivity extends Activity
{
    EditText Edit1;
    EditText Edit2;
    SQLiteDatabase db;

    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        String filePath = this.getFilesDir().toString() + "my.db3";
        db = SQLiteDatabase.openOrCreateDatabase(filePath, null);
        Edit1 = (EditText) this.findViewById(R.id.editOne);
        Edit2 = (EditText) this.findViewById(R.id.editTwo);

        Button btnInsert = (Button) this.findViewById(R.id.btnInsert);

        btnInsert.setOnClickListener(new OnClickListener()
        {
            @Override
            public void onClick(View v)
            {
                try
                {
                    InsertDataAndInflateList();
                } catch (Exception e)
                {
                    Log.i("swg", "error" + e.getMessage());
                    db.execSQL("create table SQLiteTest2(_id integer primary key autoincrement,text1 varchar(50),text2 varchar(50))");
                    InsertDataAndInflateList();
                }

            }

            private void InsertDataAndInflateList()
            {
                insertData(db, Edit1.getText().toString(), Edit2.getText().toString());
                Cursor crusor = db.rawQuery("select * from SQLiteTest2", null);
                Log.i("swg", "查詢完成");
                inflateList(crusor);
            }

            private void insertData(SQLiteDatabase db, String text, String text2)
            {
                db.execSQL("insert into SQLiteTest2 values(null,?,?)", new String[] { text, text2 });
                Log.i("swg", "插入成功");
            }

            @SuppressWarnings("deprecation")
            private void inflateList(Cursor crusor)
            {
                Log.i("swg", "inflateList");
                SimpleCursorAdapter adapter = new SimpleCursorAdapter(MainActivity.this,
                        R.layout.line, crusor, new String[] { "text1", "text2" }, new int[] {
                                R.id.tv1, R.id.tv2 });

                Log.i("swg", "inflateList==" + adapter.getCount());

                ListView lv = (ListView) findViewById(R.id.lv);
                lv.setAdapter(adapter);
            }
        });
    }

    @Override
    protected void onDestroy()
    {
        super.onDestroy();
        // 退出時關閉SQLiteDatabase
        if (db != null && db.isOpen())
            db.close();
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu)
    {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

}

運行效果;

 

注意:使用SimpleCursorAdapter封裝Cursor時要求底層數據表中的主鍵列的列名爲_id,SimpleCursorAdapter只能識別列名爲_id的主鍵。

所以以上實例中建立表時,主鍵列名爲_id.不然就會出現java.lang.IllegalArgumentException:column '_id' does not exist異常。

總結:

使用SQLiteDatabase進行數據庫操做的步驟以下:

1.獲取SQLiteDatabase對象,其表明了與數據庫的鏈接;

2.調用SQLiteDatabase的方法執行SQL語句;

3.操做SQL語句的執行結果,例如:用SimpleCursorAdapter封裝Cursor;

4.管理SQLiteDatabase,回收資源。

相關文章
相關標籤/搜索