sqflite 中 db.insert 的 Return 值?

Return value of db.insert in sqflite?

在 sqflite 中的数据库中插入函数 returns 插入行的 ID。但是我想知道如果在插入过程中出错后出现错误returns。 提前致谢。

它应该抛出一个错误,然后你可以让它 return 任何你想要的。

我使用了 sqflite 包,flutter 使用它来处理 sqlite3。当我们使用 insert 方法在 table 中插入一行时,它 returns row id if successful inserted or an error if there are some problem.