Hi, Has anyone developing an app for Mac, Xcode 14.3 and using SQLite ever had the errors below? Detail: the application compiles and runs without errors!!
Tks.
Should this...:
fmResultSet = ...
...be:
let fmResultSet = ...
..instead? And apparently:
while fmResultSet!.next() == true
Is not the valid way since next() returns the next result object, not a boolean value true or false. So perhaps you need to replace that with:
while fmResultSet!.next() != nil
Later you use the isEmpty property, and that is either true or false but you compare that to nil instead.