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

minor fix

This commit is contained in:
“digitalist.ru” 2016-03-19 21:20:05 +03:00
parent 6621822fd2
commit a567e3ca99

View File

@ -126,6 +126,10 @@ sqlpp11 requires a certain api in order to connect with the database, see databa
* Sqlite3: https://github.com/rbock/sqlpp11-connector-sqlite3 * Sqlite3: https://github.com/rbock/sqlpp11-connector-sqlite3
* PostgreSQL: https://github.com/matthijs/sqlpp11-connector-postgresql * PostgreSQL: https://github.com/matthijs/sqlpp11-connector-postgresql
To demonstrate that sqlpp11 can work with other backends as well, here is an experimental backend for structs in standard containers:
* STL Container: https://github.com/rbock/sqlpp11-connector-stl
__Date Library:__ __Date Library:__
sqlpp11 requires [Howard Hinnant's date library](https://github.com/HowardHinnant/date) for `date` and `date_time` data types. sqlpp11 requires [Howard Hinnant's date library](https://github.com/HowardHinnant/date) for `date` and `date_time` data types.
@ -140,9 +144,7 @@ create DDL files (like mysql: 'show create table MyDatabase.MyTable', but remove
``` ```
include generated header (MyTable.h), that's all include generated header (MyTable.h), that's all
To demonstrate that sqlpp11 can work with other backends as well, here is an experimental backend for structs in standard containers:
* STL Container: https://github.com/rbock/sqlpp11-connector-stl
__License:__ __License:__