我想在我的 iOS 应用程序中使用 SQLite 数据库,并且有不同的框架可用。所以我目前的重点是GRDB,我已经成功地创建、插入了值,并使用 SQL 命令返回,如下所示。
但是,一旦应用程序关闭,我将如何访问它DataBaseQueue
以及我的数据库的恒定路径应该是什么?
import GRDB
// Open a simple database connection
if let dbQueue = try DatabaseQueue(path: "what should be the correct path ")!= nil{
setupDatabase()
}
else
{
dbQueue = DatabaseQueue()
}