-
Please make it easier for me and other people who discover GRDB to immediately "get it" i.e. click with it 😉 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hello @flowtoolz! I'm afraid those are... my initials, for Gwendal Roué! For the archeologists who stumble on this page, I can give more details: My first public open source library was a Mustache templating engine, written in pre-ARC (!) Objective-C, so I needed a prefix, and I lazily picked GR: GRMustache (like NSString or UIView). Then I wanted to start something with SQLite and Swift, for my coworkers and I. At that time1 the very popular SQLite wrapper was the Objective-C FMDB. I wanted to help the transition from FMDB to GRDB, to make the life of FMDB users easy. So I grabbed many names from this library. For example, the GRDB is a tribute to FMDB ❤️ Footnotes
|
Beta Was this translation helpful? Give feedback.
Hello @flowtoolz!
I'm afraid those are... my initials, for Gwendal Roué!
For the archeologists who stumble on this page, I can give more details:
My first public open source library was a Mustache templating engine, written in pre-ARC (!) Objective-C, so I needed a prefix, and I lazily picked GR: GRMustache (like NSString or UIView).
Then I wanted to start something with SQLite and Swift, for my coworkers and I. At that time1 the very popular SQLite wrapper was the Objective-C FMDB. I wanted to help the transition from FMDB to GRDB, to make the life of FMDB users easy. So I grabbed many names from this library. For example, the
DatabaseQueue
andDatabase
types are direct ports from FMDB. …