mirror of
https://github.com/silverqx/TinyORM.git
synced 2026-01-06 10:59:31 -06:00
docs changed documents order
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
sidebar_position: 5
|
||||
sidebar_position: 9
|
||||
description: Hello world example created in the terminal and QtCreator IDE.
|
||||
---
|
||||
|
||||
|
||||
@@ -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.
|
||||
---
|
||||
|
||||
|
||||
@@ -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.
|
||||
---
|
||||
|
||||
@@ -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.
|
||||
---
|
||||
|
||||
|
||||
@@ -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.
|
||||
---
|
||||
|
||||
|
||||
@@ -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.
|
||||
---
|
||||
|
||||
|
||||
@@ -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.
|
||||
---
|
||||
|
||||
|
||||
@@ -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.
|
||||
---
|
||||
|
||||
|
||||
Reference in New Issue
Block a user