docs changed documents order

This commit is contained in:
silverqx
2022-05-12 13:13:18 +02:00
parent 91c2a0b591
commit 27a4d7a7ee
10 changed files with 14 additions and 14 deletions

View File

@@ -21,14 +21,14 @@ Whole library is documented as markdown documents:
- [Documentation: Index](/docs/README.mdx#prologue)
- [Dependencies](/docs/dependencies.mdx#dependencies)
- [Supported Compilers](/docs/supported-compilers.mdx#supported-compilers)
- [Building: TinyORM](/docs/building-tinyorm.mdx#building-tinyorm)
- [Building: Migrations](/docs/building-migrations.mdx#building-migrations)
- [Building: Hello world](/docs/building-hello-world.mdx#building-hello-world)
- [Database: Getting Started](/docs/database.mdx#database-getting-started)
- [Database: Query Builder](/docs/query-builder.mdx#database-query-builder)
- [Database: Migrations](/docs/migrations.mdx#database-migrations)
- [TinyORM: Getting Started](/docs/tinyorm.mdx#tinyorm-getting-started)
- [TinyORM: Relationships](/docs/tinyorm-relationships.mdx#tinyorm-relationships)
- [Building: TinyORM](/docs/building-tinyorm.mdx#building-tinyorm)
- [Building: Hello world](/docs/building-hello-world.mdx#building-hello-world)
- [Building: Migrations](/docs/building-migrations.mdx#building-migrations)
[action-msvc]: https://github.com/silverqx/TinyORM/actions/workflows/msvc.yml
[action-msvc-badge]: https://github.com/silverqx/TinyORM/actions/workflows/msvc.yml/badge.svg

View File

@@ -14,11 +14,11 @@ The code is well tested with the unit and functional tests. Almost all the query
- [Dependencies](dependencies.mdx)
- [Supported Compilers](supported-compilers.mdx)
- [Building: TinyORM](building-tinyorm.mdx)
- [Building: Migrations](building-migrations.mdx)
- [Building: Hello world](building-hello-world.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)

View File

@@ -1,5 +1,5 @@
---
sidebar_position: 5
sidebar_position: 9
description: Hello world example created in the terminal and QtCreator IDE.
---

View File

@@ -1,5 +1,5 @@
---
sidebar_position: 4
sidebar_position: 10
description: How to compile the TinyORM migrations (tom) c++ console application on Windows and Linux.
---

View File

@@ -1,5 +1,5 @@
---
sidebar_position: 3
sidebar_position: 8
hide_table_of_contents: true
description: How to compile the TinyORM c++ library on Windows and Linux.
---

View File

@@ -1,5 +1,5 @@
---
sidebar_position: 6
sidebar_position: 3
description: TinyORM makes interacting with a database extremely simple using raw SQL, a fluent query builder, and the TinyORM. It provides first-party support for three databases MySQL/MariaDB, PostgreSQL, and SQLite.
---

View File

@@ -1,5 +1,5 @@
---
sidebar_position: 8
sidebar_position: 5
description: Migrations are like version control for your database, allowing your team to define and share the application's database schema definition. Migrations use the Schema facade that provides database agnostic support for creating and manipulating tables across all of TinyORM's supported database systems.
---

View File

@@ -1,5 +1,5 @@
---
sidebar_position: 7
sidebar_position: 4
description: TinyORM's database query builder provides a convenient, fluent interface to creating and running database queries. It can be used to perform most database operations in your application. The query builder uses QSqlQuery parameter binding to protect your application against SQL injection attacks. There is no need to clean or sanitize strings passed to the query builder as query bindings.
---

View File

@@ -1,5 +1,5 @@
---
sidebar_position: 10
sidebar_position: 7
description: TinyORM relationships are defined as methods on your TinyORM model classes. Since relationships also serve as powerful query builders, defining relationships as methods provides powerful method chaining and querying capabilities.
---

View File

@@ -1,5 +1,5 @@
---
sidebar_position: 9
sidebar_position: 6
description: TinyORM is an object-relational mapper (ORM) that makes it enjoyable to interact with your database. When using TinyORM, each database table has a corresponding "Model" that is used to interact with that table. In addition to retrieving records from the database table, TinyORM models allow you to insert, update, and delete records from the table as well.
---