NetNewsWire/RSDatabase
Brent Simmons 7751bff896 Remove unused RSDatabase/ODB. 2024-11-08 22:02:15 -08:00
..
.github/workflows Make RSTree and RSDatabase local packages. 2024-11-08 21:52:53 -08:00
Sources Remove unused RSDatabase/ODB. 2024-11-08 22:02:15 -08:00
Tests/RSDatabaseTests Make RSTree and RSDatabase local packages. 2024-11-08 21:52:53 -08:00
.gitignore Make RSTree and RSDatabase local packages. 2024-11-08 21:52:53 -08:00
LICENSE 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

README.md

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.