做Android应用,不可避免的会与sqlite打交道。
随着应用的不断升级,原有的数据库结构可能已经不再适应新的功能,这时候,就需要对sqlite数据库的结构进行升级了。
sqlite提供了ALTER TABLE命令,允许用户重命名或添加新的字段到已有表中,
但是不能从表中删除字段。
1 ALTER TABLE Subscription ADD COLUMN Activation BLOB;
2 Key BLOB;
另外,如果遇到复杂的修改操作,比如在修改的同时,需要进行数据的转移,那么可以采取在一个事务中执行如下语句来实现修改表的需求。
1. 将表名改为临时表
ALTER Subscription RENAME TO __temp__Subscription;
2. 创建新表
CREATE Subscription (OrderId VARCHAR ( 32 ) PRIMARY KEY ,UserName ) NOT NULL 16 );
3. 导入数据
INSERT INTO SELECT OrderId,“”,sans-serif; font-size:13.63636302947998px; line-height:19.09090805053711px">FROM 或者
INSERT Subscription() * 注意 双引号”” 是用来补充原来不存在的数据的
4. 删除临时表
DROP 通过以上四个步骤,就可以完成旧数据库结构向新数据库结构的迁移,并且其中还可以保证数据不会应为升级而流失。
当然,如果遇到减少字段的情况,也可以通过创建临时表的方式来实现。
5.然后把数据库版本号改为比之前高的版本号,在OnUpgrade方法中执行上述语句就行,具体如下:
@Override
//1.创建临时表
db.execsql(" alter table " + TABLE_LOGIN_INFO
+ " rename to " + TABLE_LOGIN_INFO_);
db.execsql("alter table " + TABLE_USER + " rename to "
+ TABLE_USER_);
db.execsql(" alter table " + TABLE_PROVINCE + " rename to "
+ TABLE_PROVINCE_);
db.execsql(" alter table " + TABLE_CITY + " rename to "
+ TABLE_CITY_);
db.execsql(" alter table " + TABLE_DEPARTMENT
+ " rename to " + TABLE_DEPARTMENT_);
db.execsql("alter table " + TABLE_POSITION + " rename to "
+ TABLE_POSITION_);
db.execsql(" alter table " + TABLE_AGES + " rename to "
+ TABLE_AGES_);
db.execsql(" alter table " + TABLE_SF_DATE + " rename to "
+ TABLE_SF_DATE_);
db.execsql(" alter table " + TABLE_SF_TEST + " rename to "
+ TABLE_SF_TEST_);
db.execsql(" alter table " + TABLE_MESSAGE + " rename to "
+ TABLE_MESSAGE_);
//2.创建新表
//执行OnCreate方法,这个方法中放的是表的初始化操作工作,比如创建新表之类的
onCreate(db);
//3.导入数据
db.execsql("insert into " + TABLE_LOGIN_INFO
+ " select _id,type,userName,password from "
+ TABLE_LOGIN_INFO_);
db.execsql("insert into "
+ TABLE_USER
+ " select _id,id,subId,fatherId,isvip,cityId,notice,trueName,hospital,url from "
+ TABLE_USER_);
db.execsql("insert into " + TABLE_PROVINCE
+ " select _id,province,provinceID from "
+ TABLE_PROVINCE_);
db.execsql("insert into " + TABLE_CITY
+ " select _id,city,cityID,father from "
+ TABLE_CITY_);
db.execsql("insert into " + TABLE_DEPARTMENT
+ " select _id,departmentName,id from "
+ TABLE_DEPARTMENT_);
db.execsql("insert into " + TABLE_POSITION
+ " select _id,positionName,id from "
+ TABLE_POSITION_);
db.execsql("insert into " + TABLE_AGES
+ "select _id,age from " + TABLE_AGES_);
db.execsql("insert into " + TABLE_SF_DATE
+ " select _id,date from " + TABLE_SF_DATE_);
db.execsql("insert into " + TABLE_SF_TEST
+ " select _id,test from " + TABLE_SF_TEST_);
db.execsql("insert into "
+ TABLE_MESSAGE
+ " select _id,msg_content,msg_from,msg_to,msg_id,msg_time,msg_type,msg_head,msg_photo,msg_len,msg_voice,msg_filePath,msg_isvip,msg_subid from "
+ TABLE_MESSAGE_);
//4.将临时表删除掉
db.execsql("drop table " + TABLE_LOGIN_INFO_);
db.execsql("drop table " + TABLE_USER_);
db.execsql("drop table " + TABLE_PROVINCE_);
db.execsql("drop table " + TABLE_CITY_);
db.execsql("drop table " + TABLE_DEPARTMENT_);
db.execsql("drop table " + TABLE_POSITION_);
db.execsql("drop table " + TABLE_AGES_);
db.execsql("drop table " + TABLE_SF_DATE_);
db.execsql("drop table " + TABLE_SF_TEST_);
db.execsql("drop table " + TABLE_MESSAGE_);
case 2:
break;
为什么要在方法里写for循环,主要是考虑到夸版本升级,比如有的用户一直不升级版本,数据库版本号一直是1,而客户端最新版本其实对应的数据库版本已经是4了,那么我中途可能对数据库做了很多修改,通过这个for循环,可以迭代升级,不会发生错误。
原文链接:https://www.f2er.com/sqlite/200522.html