docs updated min. supported database versions

This commit is contained in:
silverqx
2022-08-09 21:45:22 +02:00
parent 1866500a9d
commit 4e5b4dd189

View File

@@ -18,8 +18,9 @@ keywords: [c++ orm, database, getting started, tinyorm]
Almost every modern application interacts with a database. TinyORM makes interacting with a database extremely simple using raw SQL, a [fluent query builder](database/query-builder.mdx), and the [TinyORM](tinyorm/getting-started.mdx). Currently, TinyORM provides first-party support for three databases:
- MySQL or MariaDB 5.0+ ([Version Policy](https://en.wikipedia.org/wiki/MySQL#Release_history))
- PostgreSQL 9.6+ ([Version Policy](https://www.postgresql.org/support/versioning/))
- MySQL 5.7+ ([Version Policy](https://en.wikipedia.org/wiki/MySQL#Release_history))
- MariaDB 10.3+ ([Version Policy](https://mariadb.org/about/#maintenance-policy))
- PostgreSQL 11+ ([Version Policy](https://www.postgresql.org/support/versioning/))
- SQLite 3.8.8+
TinyORM internally uses `QtSql` module, you can look for [supported databases](https://doc.qt.io/qt-5/sql-driver.html#supported-databases).