我正在尝试加载扩展名为.db3的预加载sqlite数据库,但出现错误“意外找到nil”
我将文件嵌入了targetapp >> BuildPhases >>复制捆绑软件资源。
let dat = Bundle.main.path(forResource: "resource", ofType: "db3")
let ddata = try! Connection(dat!, readonly: true)
do{
for row in try ddata.prepare("SELECT id FROM Categories") {
print("id\(row[0])")
}
}catch {
print(error.localizedDescription)
}
我想将数据加载到我的collectionView
答案 0 :(得分:0)
尝试以下方法:
let dat = Bundle.main.path(forResource: "resource", ofType: "db3")!
let ddata = try! Connection(dat, readonly: true)