SQLite Forum

Problem with single quotes Swift/MacOS
Login
In swift `sqlite3_column_decltype` is imported as `func sqlite3_column_decltype(_: OpaquePointer!, _: Int32) -> UnsafePointer<Int8>!`.

It returns an implicitly unwrapped optional which in this case is `nil`, so calling `uppercased()` on `nil` is causing the problem.