GRDB.swift icon indicating copy to clipboard operation
GRDB.swift copied to clipboard

A toolkit for SQLite databases, with a focus on application development

Results 22 GRDB.swift issues
Sort by recently updated
recently updated
newest added

For example, the code below does not compile with GRDB 7.5.0: ```swift // Should compile try request.updateAll(db) { try [ $0.foo.set(to: "bar"), $0.editionDate.set(to: db.transactionDate)] } ```

enhancement

This PR adds the compiler conditions required to build the library on Android. While [PR#1708](https://github.com/groue/GRDB.swift/pull/1708) also includes compiler conditions along with other code changes, this PR contains only the minimal...