summaryrefslogtreecommitdiffstats
path: root/libraries/sqlpp11/README
diff options
context:
space:
mode:
author Andre Barboza <bmg.andre@gmail.com>2016-12-16 23:41:55 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2016-12-17 01:18:31 +0700
commitb4998a9d87cec831f236601ba71a4633c5b9edaf (patch)
treeaa346c7ba04671e2a4180f23a5bb52b99963eae5 /libraries/sqlpp11/README
parent70531054c49799ca9eb1820470c73f122652cdd1 (diff)
downloadslackbuilds-b4998a9d87cec831f236601ba71a4633c5b9edaf.tar.gz
slackbuilds-b4998a9d87cec831f236601ba71a4633c5b9edaf.tar.xz
libraries/sqlpp11: Added (A type safe SQL template library for C++).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/sqlpp11/README')
-rw-r--r--libraries/sqlpp11/README9
1 files changed, 9 insertions, 0 deletions
diff --git a/libraries/sqlpp11/README b/libraries/sqlpp11/README
new file mode 100644
index 0000000000..54db5a368b
--- /dev/null
+++ b/libraries/sqlpp11/README
@@ -0,0 +1,9 @@
+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++.