Files
TinyORM/docs
silverqx ba8b83ce0c docs, enhanced migrations
- note about compiled migrations
 - tip about the -vvv command-line argument
 - links to the tom example and tom migrations for unit tests source
   code
2022-05-12 14:23:20 +02:00
..
2022-05-05 15:28:10 +02:00
2022-05-12 13:13:18 +02:00
2022-05-05 22:18:45 +02:00
2022-05-12 14:23:20 +02:00
2022-05-12 13:13:18 +02:00
2022-05-12 13:13:18 +02:00
2022-05-12 13:13:18 +02:00

---
title: Prologue
sidebar_position: 0
slug: /
hide_table_of_contents: true
description: TinyORM is a modern ORM library that makes interacting with a database extremely simple. The code is well tested with the unit and functional tests. The TinyORM's query builder code and the code which is responsible for obtaining relationships, is tested by functional tests against a real MySQL database.
---

# Prologue

TinyORM is a modern ORM library that makes interacting with a database extremely simple.

The code 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.mdx)
- [Database: Query Builder](query-builder.mdx)
- [Database: Migrations](migrations.mdx)
- [TinyORM: Getting Started](tinyorm.mdx)
- [TinyORM: Relationships](tinyorm-relationships.mdx)
- [Building: TinyORM](building-tinyorm.mdx)
- [Building: Hello world](building-hello-world.mdx)
- [Building: Migrations](building-migrations.mdx)