1、特點
和其他資料相比是無類型的。可以存放任意類型,但是主鍵除外。如果主鍵為:INTEGER PRIMARY KEY,則只能儲存64位整數。
1) Create Table可以用下面的語句:
CREATE TABLE person(personid integer primary key autocrement, name varchar(20))
後面的varchar(20)建議寫上。
2) 擷取自增長後的ID值:select last_insert_rowid()
案例:
1、建立資料庫
SQLiteOpenHelper .getReadableDatabase() 或 getWritableDatabase()
自動建立資料庫。
package com.tong.service;import android.content.Context;import android.database.sqlite.SQLiteDatabase;import android.database.sqlite.SQLiteDatabase.CursorFactory;import android.database.sqlite.SQLiteOpenHelper;public class DBOpen extends SQLiteOpenHelper {public DBOpen(Context context) {//資料庫名tong.db 使用系統預設的遊標工廠 資料庫檔案的版本號碼super(context, "tong.db", null, 1);}@Overridepublic void onCreate(SQLiteDatabase db) { //資料第一次 被建立時調用的//產生資料庫表//SQLiteDatabase 封裝了對資料的所有操作db.execSQL("CREATE TABLE person(personid integer primary key autoincrement, name varchar(20))");}@Overridepublic void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { //版本號碼發生變化時調用//執行更新操作//添加一個欄位db.execSQL("ALTER TABLE person ADD phone VARCHAR(12) NULL");}}
寫一個測試類別,建立資料庫。
package com.tong.test;import com.tong.service.DBOpen;import android.test.AndroidTestCase;public class DBOpenTest extends AndroidTestCase {public void testCreateDB() throws Exception{DBOpen dbopen = new DBOpen(getContext());// 自動建立資料庫dbopen.getReadableDatabase();}}
別忘了設定檔,加入單元測試:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.dbapp"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.tong.dbapp.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<uses-library android:name="android.test.runner"/>
</application>
<instrumentation android:name="android.test.InstrumentationTestRunner"
android:targetPackage="com.example.dbapp" android:label="Test Tong App">
</instrumentation>
</manifest>
運行測試案例,資料庫已經建立好!
其中的 android_metadata是自動建立的表,記錄語言資訊。