Is this project still maintained ?
Doesn't seem like it. It's a shame, because this is genuinely a nice ORM to use otherwise
Use sqlite_orm
or sqlpp11
Do sqlite_orm and sqlpp11 support automatic data binding between the C++ objects and the DB without writing additional code? Looking at their readme's, it seems they require you to write an amount of "glue syntax" between the C++ objects and the DB. The whole purpose of hiberlite is to avoid any "glue" at all... I think the concept in "hiberlite" is: "this is my C++ class, put it inside a SQL DB and do all the work for me". As I said, I don't find sqlite_orm or sqlpp11 following this concept, unless I missed something.