Files
TinyORM/docs
silverqx 0bcbcd2431 added support for PostgreSQL schema builder 🎉👌
- added a new config. option dont_drop, allows to define table that
   will be excluded during dropAllTables(), has a default value
   spatial_ref_sys for PostGIS
 - implemented fluent commands, used only by the PostgreSQL Comment
   command
 - added tests for PostgreSQL schema builder
 - reworked tst_Migrate to be able to run on all supported connections,
   currently PostgreSQL and MySQL
 - updated docs

Unrelated:

 - added a new reference class IndexDefinitionReference for a nice API
   during index definition, contains algorithm and language
 - unified selectFromWriteConnection() in schema builders
2022-05-23 10:14:25 +02:00
..
2022-05-18 16:04:44 +02:00
2022-05-23 10:14:25 +02:00
2022-05-18 16:04:44 +02:00
2022-05-18 15:43:20 +02:00

---
sidebar_position: 0
sidebar_label: 🔥 Prologue
slug: /
hide_table_of_contents: true
description: TinyORM is a modern c++ ORM library that makes interacting with a database extremely simple. It depends on the QtCore and QtSql libraries. The code is written in the modern c++20 way and is well tested with the unit and functional tests.
---

# Prologue

TinyORM is a modern c++ ORM library that makes interacting with a database extremely simple. It depends on the `QtCore` and `QtSql` libraries.

The code is written in the modern c++20 way and is well tested with the unit and functional tests. Almost all the query builder methods are unit tested. The TinyORM's query builder code and the code which is responsible for obtaining relationships, is tested by functional tests against all supported databases. For now, the code coverage is not ideal but is good enough to guarantee API and behavior compatibility.

- [Dependencies](dependencies.mdx)
- [Supported Compilers](supported-compilers.mdx)
- [Database: Getting Started](database/getting-started.mdx)
- [Database: Query Builder](database/query-builder.mdx)
- [Database: Migrations](database/migrations.mdx)
- [Database: Seeding](database/seeding.mdx)
- [TinyORM: Getting Started](tinyorm/getting-started.mdx)
- [TinyORM: Relationships](tinyorm/relationships.mdx)
- [Building: TinyORM](building/tinyorm.mdx)
- [Building: Hello world](building/hello-world.mdx)
- [Building: Migrations](building/migrations.mdx)