Files
TinyORM/docs
silverqx bb731e1c22 added make:seeder command 👌
This command is very similar to the make:migration command except
the --create and --table command-line parameters. It provides the same
functionality but for seeders.

 - updated docs TINYTOM_SEEDERS_DIR macro and TOM_SEEDERS_DIR for cmake
2022-05-17 14:50:20 +02:00
..
2022-05-05 15:28:10 +02:00
2022-05-16 21:04:32 +02:00
2022-05-17 14:50:20 +02:00
2022-05-12 14:23:20 +02:00
2022-05-12 13:13:18 +02:00
2022-05-16 21:04:32 +02:00
2022-05-17 14:50:20 +02:00
2022-05-16 21:04:32 +02:00
2022-05-16 21:04:32 +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#dependencies)
- [Supported Compilers](supported-compilers.mdx#supported-compilers)
- [Database: Getting Started](database.mdx#database-getting-started)
- [Database: Query Builder](query-builder.mdx#database-query-builder)
- [Database: Migrations](migrations.mdx#database-migrations)
- [Database: Seeding](seeding.mdx#database-seeding)
- [TinyORM: Getting Started](tinyorm.mdx#tinyorm-getting-started)
- [TinyORM: Relationships](tinyorm-relationships.mdx#tinyorm-relationships)
- [Building: TinyORM](building-tinyorm.mdx#building-tinyorm)
- [Building: Hello world](building-hello-world.mdx#building-hello-world)
- [Building: Migrations](building-migrations.mdx#building-migrations)