0
0
mirror of https://github.com/rbock/sqlpp11.git synced 2024-11-15 20:31:16 +08:00

Update Home.md

This commit is contained in:
Roland Bock 2021-12-31 17:12:14 +01:00 committed by GitHub
parent db969e9886
commit 9b8463b1f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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++. 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: The following pages will tell you how to use it:
* [Database](Database.md) * [Database Connectors](Database.md)
* [Tables](Tables.md) * [Tables](Tables.md)
* [Insert](Insert.md) * [Insert](Insert.md)
* [Select](Select.md) <- You might want to read this first as an appetizer * [Select](Select.md) <- You might want to read this first as an appetizer