gpt4 book ai didi

ios - SQLitt.Swift unregonized token 从 Swift 3.0 到 Swift 4.2 的转换错误

转载 作者:行者123 更新时间:2023-12-01 21:54:42 26 4
gpt4 key购买 nike

我当前的代码是用 Swift 3 编写的,我尝试通过 Xcode10.1 更改 Swift 4.2。 SQLite 在更改版本上崩溃并且在旧代码上正常工作。

我正在尝试在 Cocoa macOS 应用程序中使用 SQLite.swift 和 Swift 检索表中的记录数。

let db = try Connection("\(pathh)/db.sqlite3")
let users = Table("users")
var count = try db.scalar(users.filter(userid == userid).count)

但是,当执行此代码时,会引发以下异常:
unrecognized token: ":" (code: 1)

当我尝试使用 var count = try db.scalar("SELECT COUNT(*) FROM users WHERE userid=?",userid) as! Int64 ,返回正确的结果。
但是这个usu-age返回错误
no such table tablename (code:1)

对于一些表。

任何和所有的帮助将不胜感激。提前致谢!

最佳答案

在我的项目中,我需要更新的是我的 Podfile 中的以下内容:

pod 'SQLCipher', '~>4.2.0'
pod 'SQLite.swift/SQLChiper', '~>0.12.0'

pod 更新后
无法识别的 token :“:”(代码:1)已解决。

关于ios - SQLitt.Swift unregonized token 从 Swift 3.0 到 Swift 4.2 的转换错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61357241/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com