About 113,000 results
Open links in new tab
  1. How do I read data using GRDB in a SwiftUI application?

    Apr 7, 2020 · It looks that this question is more about SwiftUI than GRDB. For example, wouldn't you have the exact same question if you had to read people from a JSON resource, or from the network, …

  2. in swift how to access to database to GRDB.swft/SQLCipher on signal …

    Sep 12, 2023 · App is using GRDB.swift/SQLCipher pod for managing database. old DB and new one are crated the same way, I suppose they use same passphrase, set in Configuration() init GOAL: I …

  3. Adding minimal GRDB to an Xcode project using Swift Package …

    May 9, 2018 · 1 The demo iOS application from GRDB on github runs great on the phone simulator of my iMac, but it's not clear how to get GRDB building in an iOS application of my own (part 1 of this …

  4. swift - With GRDB, use raw sql BUT consume the results in the ...

    Apr 29, 2017 · With GRDB, use raw sql BUT consume the results in the convenience form? Asked 8 years, 7 months ago Modified 1 year, 3 months ago Viewed 2k times

  5. swift - How do I correctly bind to / observe a non-observable object ...

    Jul 31, 2025 · I have a view, TimeEditView, that edits an object of an Item class I made. The class does not conform to ObservableObject, since if it does, then it will cause issues with using GRDB. I am …

  6. Why is my string query equivalent to a GRDB built query is not ...

    Jan 25, 2025 · Through this all I am trying to determine what is different with the database with the second save. I wanted to determine this with a simple select. I followed GRDB down to how it …

  7. Alter the reference to foreign key of an existing table with GRDB

    Oct 19, 2024 · To change the destination table of a foreign key, you need to recreate the database table. The procedure is precisely documented by SQLite at Making Other Kinds Of Table Schema …

  8. SwiftUI FileDocument using Sqlite and GRDB - Stack Overflow

    Feb 24, 2021 · In a document-based SwiftUI application, I’d like to persist each document to a separate Sqlite file using GRDB as a Sqlite wrapper. It’s straightforward to load Sqlite files in a document that

  9. swift - How to set up an inner join with GRDB - Stack Overflow

    Mar 15, 2021 · How to set up an inner join with GRDB Asked 4 years, 9 months ago Modified 4 years, 9 months ago Viewed 952 times

  10. How to query a table with a 1-1 association on iOS using GRDB?

    Jan 29, 2021 · In my iOS project, I use GRDB to manage a SQLite database. I try to query a table with a 1-1 association. In my database, let's say I have 2 tables: Selections ---------- - selectionId (primary …