aboutsummaryrefslogtreecommitdiff
path: root/libraries/sqlpp11-connector-sqlite3/README
diff options
context:
space:
mode:
authorMatteo Bernardini <ponce@slackbuilds.org>2022-02-04 08:45:48 +0100
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2022-02-04 17:53:45 +0700
commit33119be684690e6b2dc43bc3170231a99504e3af (patch)
treecdcc40295e4efed6708521da8f319d99cabe358e /libraries/sqlpp11-connector-sqlite3/README
parent976e18c0230bae4f5b96433147dc8a8e625bb271 (diff)
downloadslackbuilds-33119be684690e6b2dc43bc3170231a99504e3af.tar.xz
libraries/sqlpp11-connector-sqlite3: Removed (included in sqlpp11).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/sqlpp11-connector-sqlite3/README')
-rw-r--r--libraries/sqlpp11-connector-sqlite3/README13
1 files changed, 0 insertions, 13 deletions
diff --git a/libraries/sqlpp11-connector-sqlite3/README b/libraries/sqlpp11-connector-sqlite3/README
deleted file mode 100644
index 0fdcc921e9e1..000000000000
--- a/libraries/sqlpp11-connector-sqlite3/README
+++ /dev/null
@@ -1,13 +0,0 @@
-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.