Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.9k views
in Technique[技术] by (71.8m points)

sqlite - Store Complex JSON objects in Local Database Flutter

How can we store an nested JSON object in SQLite database. In Android Room we used to have Embedded and Relation to store and retrieve complex data objects. But in flutter how can we achieve the same? I tried exploring sqflite, floor, and moor. But none seem to help except for Moor, which allows us Map the values to Object using Joins. something like below code.

  Stream<List<TaskWithTag>> watchAllTasks() {
return (select(tasks)
      ..orderBy(
        [
          (t) =>
              OrderingTerm(expression: t.dueDate, mode: OrderingMode.desc),
          (t) => OrderingTerm(expression: t.name),
        ],
      ))
    .join(
      [
        leftOuterJoin(tags, tags.name.equalsExp(tasks.tagName)),
      ],
    )
    .watch()
    .map((rows) => rows.map(
          (row) {
            return TaskWithTag(
              task: row.readTable(tasks),
              tag: row.readTable(tags),
            );
          },
        ).toList());

}

So What exactly is the right way to do this?

question from:https://stackoverflow.com/questions/65869069/store-complex-json-objects-in-local-database-flutter

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...