From 9b8463b1f638605573fe35c209066a6cf9762160 Mon Sep 17 00:00:00 2001 From: Roland Bock Date: Fri, 31 Dec 2021 17:12:14 +0100 Subject: [PATCH] Update Home.md --- docs/Home.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Home.md b/docs/Home.md index 0bf6ca06..bbaa4044 100644 --- a/docs/Home.md +++ b/docs/Home.md @@ -12,7 +12,7 @@ You have come to the right place! 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++. The following pages will tell you how to use it: -* [Database](Database.md) +* [Database Connectors](Database.md) * [Tables](Tables.md) * [Insert](Insert.md) * [Select](Select.md) <- You might want to read this first as an appetizer