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?
How to fix it?
Just add typealias Expression = SQLite.Expression as a class attribute. It worked perfectly fine for me. Other solutions could be to import 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
Expression<String>("id")
Xcode 16
SQLite.Expression<String>("id")
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With