Flutter sqflite的使用-表结构升级

前言

sqflite是一款轻量级的数据库,类似SQLite.
在Flutter平台我们使用sqflite库来同时支持Android 和iOS.
sqflite同时可以支持表结构升级.

1、pubspec.yaml 导入库

#数据库
sqflite: ^1.3.0
#路径
path_provider: ^1.5.0

2、导入头文件

import 'package:sqflite/sqflite.dart';
import 'package:path/path.dart’;

3、常见字段的定义

//数据库版本号 用于控制表结构升级
final _version = 2;
//数据库名称
final _name = "DataBase.db";
//表名称
final _table = "SearchTable";
//表字段
final _userId   = "userId";
final _nickName = "nickName";
final _mobile   = "mobile";
//新字段 用于表结构升级
final _sex       = "sex”;

4、创建数据库_name

ATQueue.internal();
//数据库句柄
static Database _database;
Future<Database> get database async {
  if (_database == null) {
    var databasesPath = await getDatabasesPath();
    String path = join(databasesPath, _name);
    _database =  await openDatabase(path,version: _version,onCreate: _onCreate,onUpgrade:_onUpgrade);
  }
  return _database;
}

5、创建表_table

//创建表
void _onCreate(Database db,int version) async{
  print("createTable version $version");
  final sql = '''
      create table if not exists $_table (
      $_userId   integer primary key,
      $_nickName text not null,
      $_mobile text not null,
      $_sex  text)
    ''';
  var batch = db.batch();
  batch.execute(sql);
  await [batch.commit();](http://batch.commit();/)
}
//升级表结构 如果有新字段加入比如这里的sex ,则旧的表需要升级表结构
void _onUpgrade(Database db, int oldVersion, int newVersion) async{
  if (oldVersion < 2){
    var batch = db.batch();
    print("updateTable version $oldVersion $newVersion");
    batch.execute('alter table $_table add column $_sex text');
    await [batch.commit();](http://batch.commit();/)
  }
//   if (oldVersion < 2){
//     var batch = db.batch();
//     try{
//       final sal = 'select $_sex from $_table';
//       await db.rawQuery(sal);
//     }catch (error){
//       print(error);
//       print("======================");
//       batch.execute('alter table $_table add column $_sex text');
//       await [batch.commit();](http://batch.commit();/)
//       //新增一列 名称sex
//     }
//   }
}

6、打开,关闭数据库

//打开
Future<Database> open() async{
  return await database;
}
///关闭
Future<void> close() async {
  var db = await database;
  return db.close();
}

7、数据插入 普通插入/事务插入

static Future insertData(int userId,String nickName,String mobile,{String sex = "男"}) async{
  Database db = await ATQueue.internal().open();
  //1、普通插入
  //await db.rawInsert("insert or replace into $_table ($_userId,$_nickName,$_mobile,$_sex) values (?,?,?,?)",[userId,nickName,mobile,sex]);
  //2、事务插入
  db.transaction((txn) async{
     txn.rawInsert("insert or replace into $_table ($_userId,$_nickName,$_mobile,$_sex) values (?,?,?,?)",[userId,nickName,mobile,sex]);
  });
  await db.batch().commit();
}

8、数据修改 普通提交/事务提交

static Future updateData(int userId,String nickName,String mobile) async{
  Database db = await ATQueue.internal().open();
  //1、普通插入
 // await db.rawUpdate("update $_table set $_nickName =  ?,$_mobile =  ? where $_userId = ?",[nickName,mobile,userId]);
  //2、事务插入
  db.transaction((txn) async{
     txn.rawUpdate("update $_table set $_nickName =  ?,$_mobile =  ? where $_userId = ?",[nickName,mobile,userId]);
  });
  await db.batch().commit();
}

9、数据删除 普通提交/事务提交

static Future deleteData(int userId) async{
  Database db = await ATQueue.internal().open();
  //1、普通提交
  //await db.rawDelete("delete from $_table where $_userId = ?",[userId]);
  //2、事务提交
  db.transaction((txn) async{
     txn.rawDelete("delete from $_table where $_userId = ?",[userId]);
  });
  await db.batch().commit();
}

10、数据查询 单体查询 所有查询 分页查询

static Future searchData(int userId) async {
  Database db = await ATQueue.internal().open();
  List<Map<String, dynamic>> maps = await db.rawQuery("select * from $_table where $_userId = $userId");
  print(maps);
  return maps;
}
static Future searchDatas() async {
  Database db = await ATQueue.internal().open();
  List<Map<String, dynamic>> maps = await db.rawQuery("select * from $_table");
  print(maps);
  return maps;
}
static Future searchDataSize(int page,int size) async {
  Database db = await ATQueue.internal().open();
  List<Map<String, dynamic>> maps = await db.rawQuery("select * from $_table order by $_userId asc limit ?,?",[(page - 1) * size,size]);
  print(maps);
  return maps;
}

11、使用方式

ATUserQueue.insertData(110, "关于", "15160023363”);
ATUserQueue.updateData(110, "诸葛亮春福", "15280592811”);
ATUserQueue.searchDatas();
ATUserQueue.deleteData(110);

12、注意

因为涉及到表结构升级;所有这边设计两个版本号 1 和 2、
1版本号

final _userId   = "userId";
final _nickName = "nickName";
final _mobile   = "mobile";

所以创建表的时候也只有这三个字段,同时插入的时候也要注意只有三个字段。

  final sql = '''
      create table if not exists $_table (
      $_userId   integer primary key,
      $_nickName text not null,
      $_mobile text not null
    ''';

2版本号多了一个sex

final _userId   = "userId";
final _nickName = "nickName";
final _mobile   = "mobile";
//新字段 用于表结构升级
final _sex       = "sex”;

所以创建表的时候也有这四个字段,同时插入的时候也要注意有四个字段。

  final sql = '''
      create table if not exists $_table (
      $_userId   integer primary key,
      $_nickName text not null,
      $_mobile text not null,
      $_sex  text)
    ''';

因为涉及到表升级所以当老的版本号小于指定版本号2的时候就会触发升级的方法,
当然如果你是在2这个版本号安装,没有老的版本号就不会触发升级,而是直接创建4个字段的表。
写的不好请见谅

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,922评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,591评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,546评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,467评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,553评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,580评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,588评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,334评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,780评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,092评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,270评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,925评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,573评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,194评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,437评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,154评论 2 366
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,127评论 2 352

推荐阅读更多精彩内容