Android context provider DB更新

2024-05-28 06:38

本文主要是介绍Android context provider DB更新,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

實際測試
new MyDBHlper時,會自動判斷,帶入的 version是不是跟之前的一樣,如果不一樣,就會先執行 MyDBHlper的onUpgrade

執行順序為

MyContentProvider: onCreate: 
MyDBHlper: onUpgrade: oldVersion:1newVersion:2
MyDBHlper: onCreate:

复制代码
public class MyContentProvider extends ContentProvider {@Overridepublic boolean onCreate() {Log.d(Tag, "onCreate: ");// MyDBHlper dbHper = new MyDBHlper(getContext(), DBname, null, 1);//FIXME:test version changeMyDBHlper dbHper = new MyDBHlper(getContext(), DBname, null, 2);MyDB = dbHper.getWritableDatabase();return true;}
}public class MyDBHlper extends SQLiteOpenHelper {@Overridepublic void onCreate(SQLiteDatabase db) {Log.d(Tag, "onCreate: ");db.execSQL(crTBsql);db.execSQL(initDBDate);}@Overridepublic void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {Log.d(Tag, "onUpgrade: oldVersion:" + oldVersion + "newVersion:" + newVersion);db.execSQL("DROP TABLE IF EXISTS " + TBname);onCreate(db);}
}
复制代码

 

***************************************************************************************************

 

轉載自http://mrraybox.blogspot.tw/2017/01/android-sqlite-onupgrade.html

 

本篇主要是示範:
1. 說明onUpgrade何時會啟用。
2. 示範如何使用onUpgrade。
3. 觀察onUpgrade使用後的前後差異。

相信開始接觸SQLite的大家都知道SQLiteOpenHelper中有一個方法叫onUpgrade,但是這個方法是做什麼用的呢?首先我們知道onCreate是在Android載入時,找不到對應的資料庫資料,就會觸發的一個方法。而onUpgrade呢,則是在資料庫的結構有所改變時,才會觸發的一個方法。

舉例來說,假如我在一月時,寫了一個App給其他人使用,在二月時,因改版需求,所以需要新增或刪減資料表的欄位。但是此時,那些使用我們所寫的App的用戶們,在這段期間已經儲存許多資料了。為了保存用戶舊的資料,此時我們就需要運用到onUpgrade來修改我們資料表的結構。

首先這裡示範我們一開始所寫的App。首先Layout部分的配置。
File Name:activity_main.xml

复制代码
<ScrollView 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" ><LinearLayoutandroid:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical" ><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal" ><Buttonandroid:id="@+id/btn_new"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="新增" /><Buttonandroid:id="@+id/btn_delete"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="刪除" /></LinearLayout><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:gravity="right"android:orientation="horizontal" ><EditTextandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:hint="ID"android:id="@+id/edt1"android:layout_weight="1" /><EditTextandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:hint="Row1"android:id="@+id/edt2"android:layout_weight="1" /><EditTextandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:hint="Row2"android:id="@+id/edt3"android:layout_weight="1" /><Buttonandroid:id="@+id/btn_alter"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="修改" /></LinearLayout><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="txt"android:id="@+id/txt"/></LinearLayout></ScrollView>
复制代码

File Name:MainActivity

复制代码
import android.content.ContentValues;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;public class MainActivity extends AppCompatActivity implements View.OnClickListener {private Button btnNew, btnDel, btnAlt;private EditText edtID, edtRow1, edtRow2;private TextView txt;private MyHelper helper;private SQLiteDatabase db;private Cursor c;private String result;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);btnNew = (Button) this.findViewById(R.id.btn_new);btnDel = (Button) this.findViewById(R.id.btn_delete); btnAlt = (Button) this.findViewById(R.id.btn_alter);edtID = (EditText) this.findViewById(R.id.edt1);edtRow1 = (EditText) this.findViewById(R.id.edt2);edtRow2 = (EditText) this.findViewById(R.id.edt3);txt = (TextView) this.findViewById(R.id.txt);btnNew.setOnClickListener(this);btnDel.setOnClickListener(this);btnAlt.setOnClickListener(this);helper = new MyHelper(this, "dbname", null, 1);db = helper.getWritableDatabase();queryDB();}private void queryDB() {c = db.query("tablename", null, null, null, null, null, null);result="";for(int i=0; i<c.getColumnCount();i++){result+=c.getColumnName(i)+", ";}result+="\n";while (c.moveToNext()) {result += c.getString(c.getColumnIndex("_id")) + ", "+c.getString(c.getColumnIndex("row1")) + ", "+c.getString(c.getColumnIndex("row2")) +"\n";}txt.setText(result);}@Overridepublic void onClick(View view) {String id = edtID.getText().toString();ContentValues values = new ContentValues();switch (view.getId()){case R.id.btn_new:values.put("row1", "Row1");values.put("row2", "Row2");db.insert("tablename", null, values);queryDB();break;case R.id.btn_delete:db.delete("tablename", "_id="+id,null);queryDB();break;case R.id.btn_alter:String row1 = edtRow1.getText().toString();String row2 = edtRow2.getText().toString();values.put("row1", row1);values.put("row2", row2);db.update("tablename", values, "_id=" + id, null);queryDB();break;}}@Overridepublic void finish() {c.close();db.close();super.finish();}
}    
复制代码

File Name:MyHelper

复制代码
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;public class MyHelper extends SQLiteOpenHelper {private String createTab;private String tableName = "tablename";public MyHelper(Context context, String db_name, SQLiteDatabase.CursorFactory factory, int db_version) {super(context, db_name, factory, db_version);}@Overridepublic void onCreate(SQLiteDatabase db) {createTab = "create table "+ tableName +" (_id integer primary key AUTOINCREMENT, row1 text, row2 text)";db.execSQL(createTab);}@Overridepublic void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {}
}
复制代码

在用戶新增完資料後,就會變成下面這樣。

接著是我們改版後的程式碼。 
File Name:MainActivity
复制代码
import android.content.ContentValues;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;public class MainActivity extends AppCompatActivity implements View.OnClickListener {private Button btnNew, btnDel, btnAlt;private EditText edtID, edtRow1, edtRow2;private TextView txt;private MyHelper helper;private SQLiteDatabase db;private Cursor c;private String result;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);btnNew = (Button) this.findViewById(R.id.btn_new);btnDel = (Button) this.findViewById(R.id.btn_delete);btnAlt = (Button) this.findViewById(R.id.btn_alter);edtID = (EditText) this.findViewById(R.id.edt1);edtRow1 = (EditText) this.findViewById(R.id.edt2);edtRow2 = (EditText) this.findViewById(R.id.edt3);txt = (TextView) this.findViewById(R.id.txt);btnNew.setOnClickListener(this);btnDel.setOnClickListener(this);btnAlt.setOnClickListener(this);helper = new MyHelper(this, "dbname", null, 2);db = helper.getWritableDatabase();queryDB();}private void queryDB() {c = db.query("tablename", null, null, null, null, null, null);result="";for(int i=0; i<c.getColumnCount();i++){result+=c.getColumnName(i)+", ";}result+="\n";while (c.moveToNext()) {result += c.getString(c.getColumnIndex("_id")) + ", "+c.getString(c.getColumnIndex("row1")) + ", "+c.getString(c.getColumnIndex("row2")) +"\n";}txt.setText(result);}@Overridepublic void onClick(View view) {String id = edtID.getText().toString();ContentValues values = new ContentValues();switch (view.getId()){case R.id.btn_new:values.put("row1", "Row1");values.put("row2", "Row2");db.insert("tablename", null, values);queryDB();break;case R.id.btn_delete:db.delete("tablename", "_id="+id,null);queryDB();break;case R.id.btn_alter:String row1 = edtRow1.getText().toString();String row2 = edtRow2.getText().toString();values.put("row1", row1);values.put("row2", row2);db.update("tablename", values, "_id=" + id, null);queryDB();break;}}@Overridepublic void finish() {c.close();db.close();super.finish();}
}
复制代码

File Name:MyHelper

复制代码
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;public class MyHelper extends SQLiteOpenHelper {private String createTab;private String tableName = "tablename";public MyHelper(Context context, String db_name, SQLiteDatabase.CursorFactory factory, int db_version) {super(context, db_name, factory, db_version);}@Overridepublic void onCreate(SQLiteDatabase db) {   createTab = "create table "+ tableName +" (_id integer primary key AUTOINCREMENT, row1 text, row2 text, row3 text)";db.execSQL(createTab);}@Overridepublic void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {if(oldVersion == 1 && newVersion == 2){//Adding a row3String sql = "alter table "+ tableName +" add row3 text";db.execSQL(sql);}}
}
复制代码

實作後,則會變成下面這樣。有發現差異在哪嗎?


改版後的App不但保存了用戶的舊資料,同時還新增了一個row3的欄位,是不是很方便的一個功能呀!

这篇关于Android context provider DB更新的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1009817

相关文章

Android中Dialog的使用详解

《Android中Dialog的使用详解》Dialog(对话框)是Android中常用的UI组件,用于临时显示重要信息或获取用户输入,本文给大家介绍Android中Dialog的使用,感兴趣的朋友一起... 目录android中Dialog的使用详解1. 基本Dialog类型1.1 AlertDialog(

MySQL双主搭建+keepalived高可用的实现

《MySQL双主搭建+keepalived高可用的实现》本文主要介绍了MySQL双主搭建+keepalived高可用的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,... 目录一、测试环境准备二、主从搭建1.创建复制用户2.创建复制关系3.开启复制,确认复制是否成功4.同

MyBatis 动态 SQL 优化之标签的实战与技巧(常见用法)

《MyBatis动态SQL优化之标签的实战与技巧(常见用法)》本文通过详细的示例和实际应用场景,介绍了如何有效利用这些标签来优化MyBatis配置,提升开发效率,确保SQL的高效执行和安全性,感... 目录动态SQL详解一、动态SQL的核心概念1.1 什么是动态SQL?1.2 动态SQL的优点1.3 动态S

Mysql表的简单操作(基本技能)

《Mysql表的简单操作(基本技能)》在数据库中,表的操作主要包括表的创建、查看、修改、删除等,了解如何操作这些表是数据库管理和开发的基本技能,本文给大家介绍Mysql表的简单操作,感兴趣的朋友一起看... 目录3.1 创建表 3.2 查看表结构3.3 修改表3.4 实践案例:修改表在数据库中,表的操作主要

mysql出现ERROR 2003 (HY000): Can‘t connect to MySQL server on ‘localhost‘ (10061)的解决方法

《mysql出现ERROR2003(HY000):Can‘tconnecttoMySQLserveron‘localhost‘(10061)的解决方法》本文主要介绍了mysql出现... 目录前言:第一步:第二步:第三步:总结:前言:当你想通过命令窗口想打开mysql时候发现提http://www.cpp

MySQL大表数据的分区与分库分表的实现

《MySQL大表数据的分区与分库分表的实现》数据库的分区和分库分表是两种常用的技术方案,本文主要介绍了MySQL大表数据的分区与分库分表的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有... 目录1. mysql大表数据的分区1.1 什么是分区?1.2 分区的类型1.3 分区的优点1.4 分

MySQL错误代码2058和2059的解决办法

《MySQL错误代码2058和2059的解决办法》:本文主要介绍MySQL错误代码2058和2059的解决办法,2058和2059的错误码核心都是你用的客户端工具和mysql版本的密码插件不匹配,... 目录1. 前置理解2.报错现象3.解决办法(敲重点!!!)1. php前置理解2058和2059的错误

Mysql删除几亿条数据表中的部分数据的方法实现

《Mysql删除几亿条数据表中的部分数据的方法实现》在MySQL中删除一个大表中的数据时,需要特别注意操作的性能和对系统的影响,本文主要介绍了Mysql删除几亿条数据表中的部分数据的方法实现,具有一定... 目录1、需求2、方案1. 使用 DELETE 语句分批删除2. 使用 INPLACE ALTER T

MySQL INSERT语句实现当记录不存在时插入的几种方法

《MySQLINSERT语句实现当记录不存在时插入的几种方法》MySQL的INSERT语句是用于向数据库表中插入新记录的关键命令,下面:本文主要介绍MySQLINSERT语句实现当记录不存在时... 目录使用 INSERT IGNORE使用 ON DUPLICATE KEY UPDATE使用 REPLACE

MySQL Workbench 安装教程(保姆级)

《MySQLWorkbench安装教程(保姆级)》MySQLWorkbench是一款强大的数据库设计和管理工具,本文主要介绍了MySQLWorkbench安装教程,文中通过图文介绍的非常详细,对大... 目录前言:详细步骤:一、检查安装的数据库版本二、在官网下载对应的mysql Workbench版本,要是