do {
var dbConnection:Connection?
dbConnection = try Connection("")
try dbConnection?.key("xxxxxxxx")
} catch {
print(error)
}
After update to Xcode16.2, I create a new iOS app project, and import the SQLite using the Swift Package Manager(tag 0.15.3),and add the code above, and build, but the error "Value of type 'Connection' has no member 'key'" appears.
How can i solve the it?
After update to Xcode16.2, I create a new iOS app project, and import the SQLite using the Swift Package Manager(tag 0.15.3),and add the code above, and build, but the error "Value of type 'Connection' has no member 'key'" appears.
How can i solve the it?