verified links in the documentation

This commit is contained in:
silverqx
2021-02-14 14:13:20 +01:00
parent ccdaf8f835
commit 5c19409851
6 changed files with 24 additions and 23 deletions

View File

@@ -1,3 +1,4 @@
<a name="top"></a>
# Database: Getting Started
- [Introduction](#introduction)
@@ -9,7 +10,7 @@
<a name="introduction"></a>
## Introduction
Almost every modern application interacts with a database. TinyORM makes interacting with a database extremely simple using raw SQL, a [fluent query builder](query-builder.md), and the [TinyORM](tinyorm.md). Currently, TinyORM provides first-party support for one database:
Almost every modern application interacts with a database. TinyORM makes interacting with a database extremely simple using raw SQL, a [fluent query builder](query-builder.md#top), and the [TinyORM](tinyorm.md#top). Currently, TinyORM provides first-party support for one database:
<div class="content-list" markdown="1">
- MySQL or MariaDB 5.0+ ([Version Policy](https://en.wikipedia.org/wiki/MySQL#Release_history))
@@ -200,4 +201,4 @@ All transaction methods accept a connection name as the optional argument:
DB::beginTransaction("mysql_test");
> {tip} The `DB` facade's transaction methods control the transactions for both the [query builder](query-builder.md) and [TinyORM](tinyorm.md).
> {tip} The `DB` facade's transaction methods control the transactions for both the [query builder](query-builder.md#top) and [TinyORM](tinyorm.md#top).