SwiftData icon indicating copy to clipboard operation
SwiftData copied to clipboard

Simple and Effective SQLite Handling in Swift

Results 32 SwiftData issues
Sort by recently updated
recently updated
newest added

If my app enter background and a lot of apps run in background , it has a high level of risk to get a sqlite 3 error code 21 when...

Hello! Is it possible to add a DoNotBackup flag or store the database file in /tmp ? Thank you, schube

getting an error on line 26: "import UIKit" of "No such module 'UIKit'

I checked the code and I did not find the place where this column is used internally (I might have missed something though). Is there any reason why you are...

I'm executing the next code according the documentation, but is just returning one column, other columns are nil. ``` func getCities() -> NSMutableArray{ var returnArray = NSMutableArray() let (resultSet, err)...

As a newcomer to IOS and Swift it would be great if you could recommend a tableview type class that would allow an easy 'window' on data rows. This was...

Plesea add some Sample project

I stole this for use at Mozilla :) But I wound up needing a few changes originally, and then slowly a lot more. My current work is at: https://github.com/wesj/firefox-ios-1/commit/debc4c27eaf48dae087b28132f3a8bc7692b0af8 It...

Hi, `public static func transaction(transactionClosure: ()->Bool) -> Int?` returns an Int with the error code, or nil if there was no error committing or rolling back the transaction. But is...

All SwiftData operations are placed on a custom serial queue ("SwiftData.DatabaseQueue") and executed in a FIFO order. Thats great, but is there a way I could set my own queue?...