Flutter数据库封装

SQLite

如果您正在编写一个需要持久化且查询大量本地设备数据的 app,可考虑采用数据库,而不是本地文件夹或关键值库。总的来说,相比于其他本地持久化方案来说,数据库能够提供更为迅速的插入、更新、查询功能。

Flutter应用程序中可以通过 sqflite package 来使用 SQLite 数据库。本文将通过使用 sqflite 来演示插入,读取,更新,删除各种数据。

如果你对于 SQLite 和 SQL 的各种语句还不熟悉,请查看 SQLite 官方的教程 SQLite 教程,在查看本文之前需要掌握基本的SQL语句。

添加sqflite依赖

dependencies:
  flutter:
    sdk: flutter
  sqflite:
  path:

封装

MessageDB

MessageDB以单例实现,提供以下功能。

  • 数据库初始化
  • 表初始化
  • 数据库打开关闭
  • 是持有表对象【SessionListTable、SessionChatTable、】
class MessageDB {
  // 单例公开访问点
  factory MessageDB() => _sharedInstance();

  static MessageDB get instance => _sharedInstance();

  // 静态私有成员,没有初始化
  static MessageDB _instance;

  // 私有构造函数
  MessageDB._() {
    // 具体初始化代码
  }

  // 静态、同步、MessageDB
  static MessageDB _sharedInstance() {
    if (_instance == null) {
      _instance = MessageDB._();
    }
    return _instance;
  }

  /// init db
  Future<Database> database;
  final SessionListTable sessionListTable = SessionListTable();
  final SessionChatTable sessionChatTable = SessionChatTable();

  initDB() async {
    try {
      String uid = UserManager.instance.userInfo.uid;
      database = openDatabase(
        // Set the path to the database.
        // 需要升级可以直接修改数据库名称
        join(await getDatabasesPath(), 'message_database_v1_$uid.db'),
        // When the database is first created, create a table to store dogs.
        onCreate: (db, version) {
          // Run the CREATE TABLE statement on the database.
          try {
            Batch batch = db.batch();
            _createTable().forEach((element) {
              batch.execute(element);
            });
            batch.commit();
          } catch (err) {
            throw (err);
          }
        },
        onUpgrade: (Database db, int oldVersion, int newVersion) {
          try {
            Batch batch = db.batch();
            _createTable().forEach((element) {
              batch.execute(element);
            });
            batch.commit();
          } catch (err) {
            throw (err);
          }
        },
        // Set the version. This executes the onCreate function and provides a
        // path to perform database upgrades and downgrades.
        version: 1,
      );
      sessionListTable.database = database;
      sessionChatTable.database = database;
    } catch (err) {
      throw (err);
    }
  }

  /// close db
  closeDB() async {
    await database
      ..close();
  }

  /// create table
  List<String> _createTable() {
    return [sessionListTable.createTable(), sessionChatTable.createTable()];
  }
}

SessionTableListener

SessionTableListener作为抽象类,提供以下接口。

abstract class SessionTableListener {
  Future<Database> database;

  createTable();

  insertList(List values);

  queryListMaxVersionId({num id});

  queryList({num id});

  deleteItem(num id);
}

SessionListTable和SessionChatTable继承SessionTableListener实现对表数据的增删查改操作。

SessionListTable实现如下。

class SessionListTable implements SessionTableListener {

  @override
  Future<Database> database;

  final String sessionListTable = 'session_list';

  @override
  createTable() {
    return "CREATE TABLE IF NOT EXISTS $sessionListTable ("
        "peer_id INTEGER PRIMARY KEY,"
        " last_msg_id INTEGER,"
        " unread_count INTEGER,"
        " version_id INTEGER,"
        " update_time INTEGER,"
        " last_msg TEXT,"
        " contact_type INTEGER,"
        " contact_user TEXT,"
        " unread_gift_count INTEGER,"
        " del_status INTEGER,"
        " top_weight INTEGER,"
        " sort_key INTEGER,"
        " stick INTEGER)";
  }

  ///插入会话列表
  @override
  insertList(List values) async {
    // Get a reference to the database.
    final Database db = await database;

    // Insert the Dog into the correct table. You might also specify the
    // `conflictAlgorithm` to use in case the same maps is inserted twice.
    //
    // In this case, replace any previous data.
    try {
      Batch batch = db.batch();
      values.forEach((element) {
        Map<String, dynamic> values = Map<String, dynamic>();
        values['peer_id'] = element['peer_id'];
        values['last_msg_id'] = element['last_msg_id'];
        values['unread_count'] = element['unread_count'];
        values['version_id'] = element['version_id'];
        values['update_time'] = element['update_time'];
        values['last_msg'] = element['last_msg'];
        values['contact_type'] = element['contact_type'];
        values['contact_user'] = element['contact_user'];
        values['unread_gift_count'] = element['unread_gift_count'];
        values['del_status'] = element['del_status'];
        values['top_weight'] = element['top_weight'];
        values['sort_key'] = element['sort_key'];
        values['stick'] = element['stick'];

        batch.insert(
          sessionListTable,
          values,
          conflictAlgorithm: ConflictAlgorithm.replace,
        );
      });
      await batch.commit();
    } catch (err) {
      throw err;
    }
  }

  ///查询会话列表最大的version id
  @override
  queryListMaxVersionId({num id}) async {
    final Database db = await database;
    List<Map> maps = await db.query(sessionListTable, orderBy: 'version_id DESC', limit: 1);
    if (maps.length>0) {
      return maps[0]['version_id'];
    }
    else {
      return 0;
    }
  }

  ///查询所有的会话列表
  @override
  queryList({num id}) async {
    // Get a reference to the database.
    final Database db = await database;

    //联系人类型 0 普通 1 打招呼 100 系统
    // Query the table for all The maps.
    final List<Map<String, dynamic>> maps = await db.query(sessionListTable,
        where: 'del_status = ? AND contact_type != ?',
        whereArgs: [0, 100],
        orderBy: 'sort_key DESC');

    return maps;
  }

  ///会话删除
  @override
  deleteItem(num id) async {
    // Get a reference to the database.
    final Database db = await database;

    await db.delete(sessionListTable, where: 'peer_id = ?', whereArgs: [id]);
  }

  ///所有会话未读数
  querySessionAllUnRead() async {
    // Get a reference to the database.
    final Database db = await database;

    //联系人类型 0 普通 1 打招呼 100 系统
    final List<Map<String, dynamic>> maps = await db.query(sessionListTable,
        columns: ['unread_count'],
        where: 'unread_count > ? AND contact_type != ?',
        whereArgs: [0, 100]);
    int count = maps.fold(0, (previousValue, element) => previousValue+element['unread_count']);
    return count;
  }

  ///所有会话标记已读
  updateSessionMarkAllRead() async {
    // Get a reference to the database.
    final Database db = await database;

    await db.update(sessionListTable, {'unread_count':0});
  }

  ///会话标记已读
  updateSessionMarkRead(num id) async {
    // Get a reference to the database.
    final Database db = await database;

    await db.update(sessionListTable, {'unread_count':0}, where: 'peer_id = ?', whereArgs: [id]);
  }

}

问题

异步初始化数据库

//初始化数据库
MessageDB.instance.initDB();

登录成功之后,初始化数据库为异步操作。同时会拉取会话列表,这时可能数据库还未初始化完成。解决办法,延迟2s后再拉取会话列表。

Future.delayed(Duration(seconds: 2), () {
      MessageDB.instance.sessionChatTable.queryList(id: _peerUser.id)
});

数据库升级

升级表或字段,修改version,会调用onUpgrade方法,可以在此处升级。

// Set the version. This executes the onCreate function and provides a
// path to perform database upgrades and downgrades.
version: 1,

如果业务比较简单,本地数据不是很重要,服务端会同步数据。不如简单粗暴,直接更改数据库名称,重新创建数据库。

  database = openDatabase(
    // Set the path to the database.
    // 需要升级可以直接修改数据库名称
    join(await getDatabasesPath(), 'message_database_v1_$uid.db'),

v1改为v2

添加新的字段

  insertList(List values) async {
    // Get a reference to the database.
    final Database db = await database;

    // Insert the Dog into the correct table. You might also specify the
    // `conflictAlgorithm` to use in case the same maps is inserted twice.
    //
    // In this case, replace any previous data.
    try {
      Batch batch = db.batch();
      values.forEach((element) {
        Map<String, dynamic> values = Map<String, dynamic>();
        values['peer_id'] = element['peer_id'];
        values['last_msg_id'] = element['last_msg_id'];
        values['unread_count'] = element['unread_count'];
        values['version_id'] = element['version_id'];
        values['update_time'] = element['update_time'];
        values['last_msg'] = element['last_msg'];
        values['contact_type'] = element['contact_type'];
        values['contact_user'] = element['contact_user'];
        values['unread_gift_count'] = element['unread_gift_count'];
        values['del_status'] = element['del_status'];
        values['top_weight'] = element['top_weight'];
        values['sort_key'] = element['sort_key'];
        values['stick'] = element['stick'];

        batch.insert(
          sessionListTable,
          values,
          conflictAlgorithm: ConflictAlgorithm.replace,
        );
      });
      await batch.commit();
    } catch (err) {
      throw err;
    }
  }

不要把List values直接传入table,如果map包含table不存在的数据,就会插入失败。为了保证传入的map包含的key都存在table的字段,对values的map需要的字段做一次解析,再传入sql。

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