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

Add a few words about Thread Safety.

This commit is contained in:
Roland Bock 2022-01-08 18:51:24 +01:00
parent 027223c515
commit 7d74b1d1a6
2 changed files with 11 additions and 0 deletions

View File

@ -21,5 +21,6 @@ The following pages will tell you how to use it:
* [Functions](Functions.md)
* [Prepared Statements](Prepared-Statements.md)
* [Transactions](Transactions.md)
* [Thread Safety](Threads.md)
* [NULL](NULL.md)
* [New Features](New-Features.md)

10
docs/Threads.md Normal file
View File

@ -0,0 +1,10 @@
# Thread Safety
sqlpp11 aspires to have no influence on thread safety itself, but offers
no particular guarantees (PRs welcome).
The recommendation therefore is to **not share** connections between threads
and to read about thread safety of the underlying database for more
information.