On Mon, Mar 9, 2015 at 10:38 PM, Scott Robison <scott at casaderobison.com> wrote: > A co-worker who is working on a project is interested in finding out if > there is an effective ORM for C++ / SQLite. I've not used one so I'm > turning to the list to see if anyone has a recommendation. > > Note: He's okay using SQLite more or less directly if he needs to, as he > recognizes the lack of reflection in C++ might lead to a less manageable > ORM. Still, never hurts to ask. >
I've been using SQLite from my C++ project with the sqlite3pp library. It is not an ORM and while it works OK for my use case, the transaction managements objects needs some work. I have only one transacion in my application so this is not an issue for me. https://github.com/iwongu/sqlite3pp -- Alejandro Santos