|
|
|
|
|
by paulkoer
4198 days ago
|
|
This is a really awesome library to generate typesafe sql queries right from the C++ source code. Example usage: auto res = db(select(foo.name, foo.hasFun)
.from(foo)
.where(foo.id > 17 and foo.name.like("%bar%")));
If you're writing SQL queries in C++ code check it out! |
|