NetNewsWire/Frameworks/RSDatabase
Brent Simmons 66ae62233f Start work on fetching unread counts. 2017-08-31 13:35:48 -07:00
..
FMDB Add RSDatabase. 2017-05-22 13:09:19 -07:00
RSDatabase Progress toward getting Database.framework to build. Mostly just commented stuff out. 2017-08-20 22:43:46 -07:00
RSDatabase.xcodeproj Make Database.framework build. Doesn’t work, but it builds. 2017-08-21 13:31:14 -07:00
RSDatabaseTests Add RSDatabase. 2017-05-22 13:09:19 -07:00
RSDatabaseiOS Add RSDatabase. 2017-05-22 13:09:19 -07:00
.gitignore Add RSDatabase. 2017-05-22 13:09:19 -07:00
DatabaseTable.swift Start work on fetching unread counts. 2017-08-31 13:35:48 -07:00
LICENSE Add RSDatabase. 2017-05-22 13:09:19 -07:00
README.md Add RSDatabase. 2017-05-22 13:09:19 -07: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.