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

Application getting crashed while running with release mode. I have attached screen shots for reference. Please help me to resolve this issue as soon as possible running smoothly geting crashed...

### What did you do? I update GRDB from 5.24.0 to 5.26.0. And then I feel my App got not smooth. ### What did you expect to happen? ### What...

This draft pull request is just a handy way to check the diff

`.strict` table option is only available in custom SQLite builds. It seems that this was intentionally done here: https://github.com/groue/GRDB.swift/pull/1133 I was wondering why is this only available in custom SQLite...

First up, thank you for making this! 🙏🏻 I have used GRDB in quite a few projects throughout my career now and it's a go-to tool for me. Making my...

### What did you do? `AttributedString` structs are encodable using an `@CodableConfiguration` property wrapper provided with the subset of attributes that is allowed to be encoded into JSON. I would...

I tried a new query based on examples from you: ``` func getPatientTimeline() -> [PatientTimelineInfo] { var patientTimelineInfo = [PatientTimelineInfo]() do { patientTimelineInfo = try db.read { db in let...

A ValueObservation fails with the 'SQLite error 1: no such table: xxx' error. This only happens when the app is first launched and the database is newly created. In the...

I tried to make this into a draft PR at least, but ran into so many dead ends that I didn't feel like opening something that would've required more fixing...

### What did you do? Built a query using recursive CTE ### What did you expect to happen? My solution works, and it replaces a lot of crappy Swift code...