Issues are used to track bugs and feature requests.
Need help or have a general question? Ask on Stack Overflow (tag sqlite.swift).


Haven't seen these issues, but made some fixes here: https://github.com/stephencelis/SQLite.swift/pull/1008
I got the same problem with this.
Last time I used this #986 to solve on Xcode 11.5
pod 'SQLCipher', '= 4.2.0'
pod 'SQLite.swift/SQLCipher', '~> 0.12.2'
But it isn't working on Xcode 12 beta 2 now…
Beta 4 should fix this issue
Beta 4 should fix this issue
hello, My Xcode Has been update to Beta4,But This issue still happen!
Still has this issue with Xcode Beta5!
Same issue on Xcode 12.0 beta 6.
Still happening on Xcode 12.0 beta 6 (12A8189n)
Same issue with Xcode 12 GM seed any solutions?
I'm not sure, but maybe #1006 will help you
I have found a temporary solution.
Check https://github.com/stephencelis/SQLite.swift/pull/970
My podfile now:
pod 'SQLite.swift/standalone', :git => 'https://github.com/stephencelis/SQLite.swift', :branch => 'master'
pod 'sqlite3', '3.29.0'
So, u have to install version from master.
Using SQLCipher w/ Xcode 12 GM, I ran into a couple of different issues:
SQLITE_DETERMINISTIC".SQLiteObjc.h when trying to @import SQLite3;sqlite_..."What resolved all of these issues for me was to change the import statement in SQLiteObjc.h:
From:
@import SQLite3;
To:
@import SQLCipher.sqlite3;
After making this change and performing a clean & build, all of my build errors have resolved.
This cartfile works for me:
github "stephencelis/SQLite.swift" "385ce0c1b9870c712e712491caa528591988be3e"
Hi guys, this workaround worked for Xcode 12.1 (12A7403)
Hello, Still not working on the offical Xcode 12.3 application with no mods. Getting the same error.

Here is the mod: https://github.com/docpitz/SQLite.swift
Thanks, I will try it out soon and let you know my results.
Most helpful comment
Using SQLCipher w/ Xcode 12 GM, I ran into a couple of different issues:
SQLITE_DETERMINISTIC".SQLiteObjc.hwhen trying to@import SQLite3;sqlite_..."What resolved all of these issues for me was to change the import statement in
SQLiteObjc.h:From:
To:
After making this change and performing a clean & build, all of my build errors have resolved.