im very new to flutter, and i just want to setup a SQLite database with multiple tables. my research below.
thanks in advance.
How to create multiple tables in a database in sqflite?
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
)''');
Unknown error calling sqlite3_step (10: disk I/O error) rs