Android中sqlite資料庫應用

來源:互聯網
上載者:User

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是自動建立的表,記錄語言資訊。




相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.