Skip to content

Commit c328e2c

Browse files
committed
readme: added jumbo
1 parent 860a033 commit c328e2c

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

readme.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,26 @@
1-
Nette Database
2-
==============
1+
[![Nette Database](https://github.com/nette/database/assets/194960/97d8f31b-096c-466c-a76f-f5b9e511ea8d)](https://doc.nette.org/database)
32

43
[![Downloads this Month](https://img.shields.io/packagist/dm/nette/database.svg)](https://packagist.org/packages/nette/database)
54
[![Tests](https://github.com/nette/database/actions/workflows/tests.yml/badge.svg?branch=master)](https://github.com/nette/database/actions)
65
[![Latest Stable Version](https://poser.pugx.org/nette/database/v/stable)](https://github.com/nette/database/releases)
76
[![License](https://img.shields.io/badge/license-New%20BSD-blue.svg)](https://github.com/nette/database/blob/master/license.md)
87

8+
 <!---->
99

1010
Introduction
1111
------------
1212

1313
Nette provides a powerful layer for accessing your database easily.
1414

15-
- composes SQL queries with ease
16-
- easily fetches data
17-
- uses efficient queries and does not transmit unnecessary data
15+
composes SQL queries with ease<br>
16+
✅ significantly simplifies retrieving data without writing SQL queries<br>
17+
uses efficient queries and does not transmit unnecessary data
1818

19-
The [Nette Database Core](https://doc.nette.org/database-core) is a wrapper around the PDO and provides core functionality.
19+
The [Nette Database Core](https://doc.nette.org/en/database/core) is a wrapper around the PDO and provides core functionality.
2020

21-
The [Nette Database Explorer](https://doc.nette.org/database-explorer) layer helps you to fetch database data more easily and in a more optimized way.
21+
The [Nette Database Explorer](https://doc.nette.org/en/database/explorer) layer helps you to fetch database data more easily and in a more optimized way.
2222

23+
 <!---->
2324

2425
[Support Me](https://github.com/sponsors/dg)
2526
--------------------------------------------
@@ -30,6 +31,7 @@ Do you like Nette Database? Are you looking forward to the new features?
3031

3132
Thank you!
3233

34+
 <!---->
3335

3436
Installation
3537
------------
@@ -42,12 +44,14 @@ composer require nette/database
4244

4345
It requires PHP version 8.1 and supports PHP up to 8.3.
4446

47+
 <!---->
4548

4649
Usage
4750
-----
4851

4952
This is just a piece of documentation. [Please see our website](https://doc.nette.org/database).
5053

54+
 <!---->
5155

5256
Database Core
5357
-------------
@@ -71,6 +75,8 @@ $database->query('UPDATE users SET ? WHERE id=?', $data, $id);
7175
$database->query('SELECT * FROM categories WHERE id=?', 123)->dump();
7276
```
7377

78+
 <!---->
79+
7480
Database Explorer
7581
-----------------
7682

0 commit comments

Comments
 (0)