NetNewsWire/RSDatabase
Dimitris Apostolou ccd76a5354
Fix typos
2024-12-06 18:06:27 +02:00
..
.github/workflows Make RSTree and RSDatabase local packages. 2024-11-08 21:52:53 -08:00
.swiftpm/xcode/xcshareddata/xcschemes Switch to new Parser. 2024-11-15 22:59:51 -08:00
Sources Fix typos 2024-12-06 18:06:27 +02:00
Tests/RSDatabaseTests Remove unused files from RSDatabase. 2024-11-10 20:21:12 -08:00
.gitignore Make RSTree and RSDatabase local packages. 2024-11-08 21:52:53 -08:00
Package.swift Remove unused RSDatabase/ODB. 2024-11-08 22:02:15 -08:00
README.md Make RSTree and RSDatabase local packages. 2024-11-08 21:52:53 -08:00

RSDatabase

This is utility code for using SQLite via FMDB. Its not a persistence framework — its lower-level.

It builds as a couple frameworks — one for Mac, one for iOS.

It has no additional dependencies, but thats because FMDB is actually included — you might want to instead make sure you have the latest FMDB, which isnt necessarily included here.

What to look at

The main thing is RSDatabaseQueue, which allows you to talk to SQLite-via-FMDB using a serial queue.

The second thing is FMDatabase+RSExtras, which provides methods for a bunch of common queries and updates, so you dont have to write as much SQL.