When you will update Xcode 15 to Xcode 16, you will get many errors using SQLite.swift library.
For example: Missing argument label 'value:' in call
etc, etc.
How to fix them?
When you will update Xcode 15 to Xcode 16, you will get many errors using SQLite.swift library.
For example: Missing argument label 'value:' in call
etc, etc.
How to fix them?
2
Answers
How to fix it?
Just add
typealias Expression = SQLite.Expression
as a class attribute. It worked perfectly fine for me. Other solutions could be toimport SQLite.Expression
if it can work for your case.References:
https://github.com/stephencelis/SQLite.swift/issues/1269
https://github.com/stephencelis/SQLite.swift/issues/1277
Xcode 15
Xcode 16