android(17)_資料存放區與訪問_SQLite資料庫_修改資料庫

來源:互聯網
上載者:User

更改DBOpenHelper.java


[java] 
package com.example.lession04_db.service; 
 
import android.content.Context; 
import android.database.sqlite.SQLiteDatabase; 
import android.database.sqlite.SQLiteOpenHelper; 
import android.util.Log; 
 
public class DBOpenHelper extends SQLiteOpenHelper { 
    // 資料庫的名稱  
    private static final String name = "CSDN.db"; 
    // 資料庫的版本  
    private static final int version = 2; 
 
    public DBOpenHelper(Context context) { 
        // 第三個參數CursorFactory指定在執行查詢時獲得一個遊標執行個體的工廠類,設定為null,代表使用系統預設的工廠類  
        super(context, name, null, version); 
        Log.v("DBSQLiteOpenHelper", "構造器......"); 
    } 
 
    // 當資料庫第一次建立的時候 執行的方法  
    @Override 
    public void onCreate(SQLiteDatabase db) { 
        // execSQL來執行sql語句  
        db.execSQL("create table person(personid integer primary key autoincrement,name varchar(20),age integer )"); 
 
        Log.v("DBSQLiteOpenHelper", "onCreate......建立執行一次"); 
    } 
 
    // 當資料庫的版本發生變化的時候執行的方法  
    @Override 
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { 
        db.execSQL("alter table person add account integer"); 
        Log.v("DBSQLiteOpenHelper", "當資料庫版本更新的時候執行........每次更新都執行 "); 
    } 
 

package com.example.lession04_db.service;

import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.util.Log;

public class DBOpenHelper extends SQLiteOpenHelper {
 // 資料庫的名稱
 private static final String name = "CSDN.db";
 // 資料庫的版本
 private static final int version = 2;

 public DBOpenHelper(Context context) {
  // 第三個參數CursorFactory指定在執行查詢時獲得一個遊標執行個體的工廠類,設定為null,代表使用系統預設的工廠類
  super(context, name, null, version);
  Log.v("DBSQLiteOpenHelper", "構造器......");
 }

 // 當資料庫第一次建立的時候 執行的方法
 @Override
 public void onCreate(SQLiteDatabase db) {
  // execSQL來執行sql語句
  db.execSQL("create table person(personid integer primary key autoincrement,name varchar(20),age integer )");

  Log.v("DBSQLiteOpenHelper", "onCreate......建立執行一次");
 }

 // 當資料庫的版本發生變化的時候執行的方法
 @Override
 public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
  db.execSQL("alter table person add account integer");
  Log.v("DBSQLiteOpenHelper", "當資料庫版本更新的時候執行........每次更新都執行 ");
 }

}

運行測試方法,得到如下結果

 
 


 

相關文章

聯繫我們

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