slackbuilds/libraries/sqlpp11
Andre Barboza e1f57ac186
libraries/sqlpp11: Updated for version 0.45.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
2017-02-04 06:59:37 +07:00
..
README libraries/sqlpp11: Updated for version 0.45. 2017-02-04 06:59:37 +07:00
slack-desc libraries/sqlpp11: Updated for version 0.45. 2017-02-04 06:59:37 +07:00
sqlpp11.SlackBuild libraries/sqlpp11: Updated for version 0.45. 2017-02-04 06:59:37 +07:00
sqlpp11.info libraries/sqlpp11: Updated for version 0.45. 2017-02-04 06:59:37 +07:00
sqlpp11.patch libraries/sqlpp11: Added (A type safe SQL template library for C++). 2016-12-17 01:18:31 +07:00

README

sqlpp11 offers you to code SQL in C++ almost naturally. You can use
tables, columns and functions. Everything has strong types which
allow the compiler to help you a lot. At compile time, it will tell
about most of those pesky oversight errors you can make (typos,
comparing apples with oranges, forgetting tables in a select
statement, etc). And it does not stop at query construction.
Results have ranges, and strongly typed members, so that you can
browse through results in a type-safe manner, worthy of modern
C++.