Files
TinyORM/docs
silverqx a4fe443541 added pluck()
Two overloads, simple pluck(column) to get values from the given column
and pluck<T>(column, key) which returns std::map<T, QVariant> values
of the given column keyed by the given key.

 - added docs
 - added tests
 - manually tested all proxies
2021-07-13 14:28:41 +02:00
..
2021-07-13 09:43:36 +02:00
2021-07-13 14:28:41 +02:00
2021-07-11 15:48:55 +02:00
2021-07-11 15:48:55 +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 a real MySQL database. For now, the code coverage is not ideal but is good enough to guarantee API and behavior compatibility.

- [Dependencies](dependencies.mdx)
- [Database: Getting Started](database.mdx)
- [Database: Query Builder](query-builder.mdx)
- [TinyORM: Getting Started](tinyorm.mdx)
- [TinyORM: Relationships](tinyorm-relationships.mdx)