gitextract_03naq3tg/ ├── .github/ │ ├── FUNDING.yml │ ├── issue_template.md │ ├── pull_request_template.md │ └── workflows/ │ └── build.yml ├── .gitignore ├── .swiftlint.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Documentation/ │ ├── Index.md │ ├── Linux.md │ ├── Planning.md │ ├── Release.md │ └── Upgrading.md ├── Gemfile ├── LICENSE.txt ├── Makefile ├── Package.swift ├── README.md ├── SQLite.playground/ │ ├── Contents.swift │ ├── contents.xcplayground │ └── playground.xcworkspace/ │ └── contents.xcworkspacedata ├── SQLite.swift.podspec ├── SQLite.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata/ │ └── xcschemes/ │ ├── SQLite Mac.xcscheme │ ├── SQLite iOS.xcscheme │ ├── SQLite tvOS.xcscheme │ ├── SQLite visionOS.xcscheme │ └── SQLite watchOS.xcscheme ├── Sources/ │ └── SQLite/ │ ├── Core/ │ │ ├── Backup.swift │ │ ├── Blob.swift │ │ ├── Connection+Aggregation.swift │ │ ├── Connection+Attach.swift │ │ ├── Connection+Pragmas.swift │ │ ├── Connection.swift │ │ ├── Errors.swift │ │ ├── Result.swift │ │ ├── SQLiteFeature.swift │ │ ├── SQLiteVersion.swift │ │ ├── Statement.swift │ │ ├── URIQueryParameter.swift │ │ └── Value.swift │ ├── Extensions/ │ │ ├── Cipher.swift │ │ ├── FTS4.swift │ │ ├── FTS5.swift │ │ └── RTree.swift │ ├── Foundation.swift │ ├── Helpers.swift │ ├── Info.plist │ ├── PrivacyInfo.xcprivacy │ ├── SQLite.h │ ├── Schema/ │ │ ├── Connection+Schema.swift │ │ ├── SchemaChanger.swift │ │ ├── SchemaDefinitions.swift │ │ └── SchemaReader.swift │ └── Typed/ │ ├── AggregateFunctions.swift │ ├── Coding.swift │ ├── Collation.swift │ ├── CoreFunctions.swift │ ├── CustomFunctions.swift │ ├── DateAndTimeFunctions.swift │ ├── Expression.swift │ ├── Operators.swift │ ├── Query+with.swift │ ├── Query.swift │ ├── Schema.swift │ ├── Setter.swift │ └── WindowFunctions.swift ├── Tests/ │ ├── .swiftlint.yml │ ├── SPM/ │ │ ├── .gitignore │ │ ├── Package.swift │ │ └── Sources/ │ │ └── test/ │ │ └── main.swift │ ├── SQLite visionOS.xctestplan │ ├── SQLiteTests/ │ │ ├── Core/ │ │ │ ├── BlobTests.swift │ │ │ ├── Connection+AttachTests.swift │ │ │ ├── Connection+PragmaTests.swift │ │ │ ├── ConnectionTests.swift │ │ │ ├── CoreFunctionsTests.swift │ │ │ ├── ResultTests.swift │ │ │ ├── StatementTests.swift │ │ │ └── ValueTests.swift │ │ ├── Extensions/ │ │ │ ├── CipherTests.swift │ │ │ ├── FTS4Tests.swift │ │ │ ├── FTS5IntegrationTests.swift │ │ │ ├── FTS5Tests.swift │ │ │ └── RTreeTests.swift │ │ ├── Fixtures.swift │ │ ├── FoundationTests.swift │ │ ├── Info.plist │ │ ├── Schema/ │ │ │ ├── Connection+SchemaTests.swift │ │ │ ├── SchemaChangerTests.swift │ │ │ ├── SchemaDefinitionsTests.swift │ │ │ ├── SchemaReaderTests.swift │ │ │ └── SchemaTests.swift │ │ ├── TestHelpers.swift │ │ └── Typed/ │ │ ├── AggregateFunctionsTests.swift │ │ ├── CustomAggregationTests.swift │ │ ├── CustomFunctionsTests.swift │ │ ├── DateAndTimeFunctionTests.swift │ │ ├── ExpressionTests.swift │ │ ├── OperatorsTests.swift │ │ ├── QueryIntegrationTests.swift │ │ ├── QueryTests.swift │ │ ├── RowTests.swift │ │ ├── SelectTests.swift │ │ ├── SetterTests.swift │ │ └── WindowFunctionsTests.swift │ └── Tuist/ │ └── SQLite-Test/ │ ├── .gitignore │ ├── Project.swift │ ├── SQLite-Test/ │ │ ├── Sources/ │ │ │ └── SQLiteTestApp.swift │ │ └── Tests/ │ │ └── SQLiteTestTests.swift │ ├── Tuist/ │ │ └── Package.swift │ └── Tuist.swift └── run-tests.sh