20

我正在使用使用 SQLite 数据库的颤振构建和应用程序。我使用这段代码创建了第一个表:

 void _createDb(Database db, int newVersion) async {
    await db.execute('''CREATE TABLE cards (id_card INTEGER PRIMARY KEY, 
         color TEXT, type TEXT, rarity TEXT, name TEXT UNIQUE, goldCost INTEGER,
         manaCost INTEGER, armor INTEGER, attack INTEGER, health INTEGER, description TEXT)''');
}

表被创建,我可以毫无问题地访问它。

不幸的是,我不能包含超过 1 个我刚刚创建的表。我尝试在同一方法中添加另一个 SQL CREATE TABLE 子句,并db.execute在下一行使用不同的 SQL 子句重复方法。

我正在模仿本教程中的代码:https ://www.youtube.com/watch?v=xke5_yGL0uk

如何在同一个数据库中添加另一个表?

4

6 回答 6

24

例如,您可以组合多个 db.execute 调用

await db.execute('''
      create table $reminderTable (
        $columnReminderId integer primary key autoincrement,
        $columnReminderCarId integer not null,
        $columnReminderName text not null,
        $columnReminderNotifyMileage integer not null,
        $columnReminderEndMileage integer not null
       )''');
await db.execute('''
       create table $carTable (
        $columnCarId integer primary key autoincrement,
        $columnCarTitle text not null
       )''');

于 2019-02-28T22:08:06.860 回答
17

是的,你可以做到

 void _createDb(Database db, int newVersion) async {
 await db.execute('''
   create table $carTable (
    $columnCarId integer primary key autoincrement,
    $columnCarTitle text not null
   )''');
 await db.execute('''
   create table $userTable(
    $userId integer primary key autoincrement,
    $name text not null
   )''');
  }

但是为了加快这个过程,假设我们有 10 个表,你可以这样使用批处理

void _createDb(Database db, int newVersion) async {
Batch batch = db.batch();
batch.execute("Your query-> Create table if not exists");
batch.execute("Your query->Create table if not exists");
List<dynamic> res = await batch.commit();
//Insert your controls
}
于 2019-07-17T15:47:19.640 回答
6

您可以使用包含数据库脚本的 .sql 文件。

首先,将脚本文件添加到资产。

然后,导入以下包:

import 'package:path/path.dart';

import 'package:sqflite/sqflite.dart';

import 'package:flutter/services.dart' show rootBundle;

最后,使用以下代码

void _createDb() async 
{
      final database = openDatabase( join( await getDatabasesPath(), 'mydb.db'),
      onCreate: (db, version) async  
      {
          // call database script that is saved in a file in assets
          String script =  await rootBundle.loadString("assets\\db\\script.sql");
          List<String> scripts = script.split(";");
          scripts.forEach((v) 
          {
              if(v.isNotEmpty ) 
              {
                   print(v.trim());
                   db.execute(v.trim());
              }
          });
       },
       version: 1,
       );
}
于 2019-07-31T11:56:55.337 回答
4

更改DB文件的名称。这将“重置”您的数据库并且创建将起作用。

例如:

final dabasesPath = await getDatabasesPath(); 
final path = join(dabasesPath, "newName2.db");
于 2019-05-12T21:35:12.030 回答
3

openDatabase(path, onCreate, version) 使用另一个可选参数"onUpgrade"并定义删除和再次创建表脚本。并将参数版本升级(增加)一个。

----- 代码片段 ------

openDatabase(path, onCreate:_createDb, onUpgrade: onUpgrade,version:_DB_VERSION);
...
...

    _onUpgrade( Database db, int oldVersion, int newVersion ) async {

    Batch batch = db.batch();

    // drop first

    batch.execute("DROP TABLE IF EXISTS $_TABLE_3 ;");

    batch.execute("DROP TABLE IF EXISTS $_TABLE_2 ;");
    batch.execute("DROP TABLE IF EXISTS $_TABLE_1 ;");
    // then create again
    batch.execute("CREATE TABLE $TABLE_1 ...... ");
    batch.execute("CREATE TABLE $TABLE_2 ...... ");
    batch.execute("CREATE TABLE $TABLE_3 ...... ");
    List<dynamic> result = await batch.commit();

}

注意:每次创建或更改某些表的结构时,都必须在openDatabase()方法中增加数据库版本。这样升级才会被调用,否则不会被调用。

于 2020-01-14T23:32:17.507 回答
2

很难说没有看到您的openDatabase电话以及数据库之前是否存在。我的猜测之一是您仍在使用相同的数据库版本。一旦onCreate被调用,它将永远不会被再次调用。您应该尝试提高您的数据库版本并添加新表onUpgrade

于 2019-02-04T08:15:04.487 回答