SQLite.swift
SQLite.swift copied to clipboard
A type-safe, Swift-language layer over SQLite3.
Reactive database is needed in reactive architecture. I don't see any Combine bindings provided. Is there some sort of data change listener I could adapt myself to Combine?
Missing changes for #1146 Also fixes #1154
> Issues are used to track bugs and feature requests. > Need help or have a general question? Ask on Stack Overflow (tag sqlite.swift). ## Build Information - Include the...
Adds support for `UInt32` and `UInt64`. For the 64 bit versions, the 8 bytes are stored as a `BLOB` in big endian format. UInt32 are stored in a normal `INTEGER`...
## Build Information - Include the SQLite.swift version, commit or branch experiencing the issue. 0.12.2 - Mention Xcode and OS X versions affected. iOS 14, Xcode 12.4 - How do...
We use Blobs a lot in our database and find the current API to not allow much performance tuning. This pull request address this by: - Blobs are now a...
Caused by this bug in Swift: https://github.com/apple/swift/issues/47006 Not much we can do at this point, except avoiding this construct. ``` * thread #1, name = 'SQLite.swiftPac', stop reason = signal...
``` Restarting after unexpected exit, crash, or test timeout in CustomAggregationTests.testCustomStringAgg(); summary will include totals from previous launches. ```
Require a basic example project. I hope this lib can be friendly to beginners. I hope someone could write a iOS project in swift demonstrate how to insert, delete, query...