diff options
author | Andre Barboza <bmg.andre@gmail.com> | 2016-12-16 23:44:41 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-12-17 01:18:31 +0700 |
commit | bb594bc10f78b26d0cc3ea9fd4ce1219c0711c78 (patch) | |
tree | 53896cad5561213590c885c41af3ff2385cec9d6 /libraries/sqlpp11-connector-sqlite3/README | |
parent | b4998a9d87cec831f236601ba71a4633c5b9edaf (diff) |
libraries/sqlpp11-connector-sqlite3: Added (connector for SQLite3).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/sqlpp11-connector-sqlite3/README')
-rw-r--r-- | libraries/sqlpp11-connector-sqlite3/README | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libraries/sqlpp11-connector-sqlite3/README b/libraries/sqlpp11-connector-sqlite3/README new file mode 100644 index 0000000000000..0fdcc921e9e15 --- /dev/null +++ b/libraries/sqlpp11-connector-sqlite3/README @@ -0,0 +1,13 @@ +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++. + +sqlpp11 requires a certain api in order to connect with the +database, sqlpp11-connector-sqlite3 is a SQL connector for +the Sqlite3 database. |