You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+23-31Lines changed: 23 additions & 31 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,49 +13,51 @@ Nette provides a powerful layer for accessing your database easily.
13
13
- easily fetches data
14
14
- uses efficient queries and does not transmit unnecessary data
15
15
16
-
The `Nette\Database\Connection` class is a wrapper around the PDO and represents a connection to the database.
17
-
The core functionality is provided by `Nette\Database\Context`. `Nette\Database\Table` layer provides an enhanced layer for table querying.
16
+
The `Nette\Database\Connection` class is a wrapper around the PDO and provides core functionality.
18
17
19
-
To create a new database connection just create a new instance of [api:Nette\Database\Connection] class:
18
+
The `Nette Database Table` is enhanced layer that helps you to fetch database data more easily and in a more optimized way.
20
19
21
-
```php
22
-
$connection = new Nette\Database\Connection($dsn, $user, $password);
23
-
```
24
20
25
-
All connections are created as "lazy" by default. This means the connection is established when it's needed, not when you create a `Connection` instance. You can disable this behavior by passing `'lazy' => FALSE` configuration.
21
+
Documentation
22
+
-------------
23
+
24
+
This is just a piece of documentation. [Please see our website](https://doc.nette.org/database).
25
+
26
26
27
-
Queries
28
-
--------
27
+
Connection
28
+
----------
29
29
30
-
The core functionality is provided by `Nette\Database\Connection`. Connection allows you to easily query your database by calling `query` method:
30
+
To create a new database connection just create a new instance of `Nette\Database\Connection` class:
31
31
32
32
```php
33
33
$database = new Nette\Database\Context($connection);
34
+
```
35
+
36
+
Connection allows you to easily query your database by calling `query` method:
34
37
35
-
$database->query('INSERT INTO users', array( // an array can be a parameter
38
+
```php
39
+
$database->query('INSERT INTO users', [ // an array can be a parameter
36
40
'name' => 'Jim',
37
41
'created' => new DateTime, // or a DateTime object
38
42
'avatar' => fopen('image.gif', 'r'), // or a file
39
-
), ...); // it is even possible to use multiple inserts
43
+
], ...); // it is even possible to use multiple inserts
40
44
41
45
$database->query('UPDATE users SET ? WHERE id=?', $data, $id);
42
46
$database->query('SELECT * FROM categories WHERE id=?', 123)->dump();
43
47
```
44
48
45
-
Table Selection
46
-
---------------
49
+
Nette Database Table
50
+
-------------------
47
51
48
-
`Nette\Database\Table` layer helps you to fetch database data more easily and in a more optimized way. **The primary attitude is to fetch data only from one table and fetch them at once.** The data are fetched into [ActiveRow | database-activerow] instances. Data from other tables connected by relationships are delivered by another queries - this is maintained by Database\Table layer itself.
52
+
NetteDatabaseTable layer helps you to fetch database data more easily and in a more optimized way. **The primary attitude is to fetch data only from one table and fetch them at once.** The data are fetched into `ActiveRow instances. Data from other tables connected by relationships are delivered by another queries - this is maintained by Database\Table layer itself.
49
53
50
54
Let's take a look at common use-case. You need to fetch books and their authors. It is common 1:N relationship. The often used implementation fetches data by one SQL query with table joins. The second possibility is to fetch data separately, run one query for getting books and then get an author for each book by another query (e.g. in your foreach cycle). This could be easily optimized to run only two queries, one for books, and another for the needed authors - and this is just the way how Nette\Database\Table does it.
51
55
52
-
Creating Selection is quite easy, just call `table()` method on your database context.
53
-
54
56
```php
55
57
$selection = $context->table('book'); // db table name is "book"
56
58
```
57
59
58
-
Selection implements traversable interface: you can just iterate over the instance to get all books. The rows are fetched as ActiveRow instances; you can read row data from their properties.
60
+
You can just iterate over the instance to get all books. The rows are fetched as ActiveRow instances; you can read row data from their properties.
59
61
60
62
```php
61
63
$books = $context->table('book');
@@ -76,18 +78,6 @@ echo $book->author_id;
76
78
Working with relationships
77
79
--------------------------
78
80
79
-
As we mentioned in the chapter intro, Database\Table layer maintains the table relations for you. There are two possibilities how and where you can work with relationships.
80
-
81
-
1.**Filtering rows fetched by Selection.** In the introduction we stated the basic principle to select data only from one database table at once. However, Selection instance can do a table join to filter selected row. For example you need select only that authors who has written more than 2 books.
82
-
2.**Getting related data for fetched ActiveRows.** We denied getting data from more than one table at once. Sadly, printing `author_id` is not good enough. We need to get full author database row, ideally fetched as ActiveRow. Getting this type of relationships is maintained by ActiveRow.
83
-
84
-
85
-
In provided examples we will work with this database schema below. There are common OneHasMany and ManyHasMany relationships. OneHasMany relationship is doubled, a book must have an author and could have a translator (`translator_id` could be a `NULL`).
In example below we are getting related data for fetched books. In author property (of book ActiveRow instances) is available another ActiveRow instance, which represents author of the book. Getting book_tag instances is done by `related()` method, which returns collection of this instances. In the cycle we get the tag name from another ActiveRow instance available in book_tag instance.
90
-
91
81
```php
92
82
$books = $context->table('book');
93
83
@@ -111,11 +101,13 @@ SELECT * FROM `book_tag` WHERE (`book_tag`.`book_id` IN (1, 4, 2, 3))
111
101
SELECT*FROM`tag`WHERE (`tag`.`id`IN (21, 22, 23))
112
102
```
113
103
114
-
If you use cache (defaults on), no columns will be queried unnecessarily. After the first query, cache will store the used column names and Nette\Database will run queries only with the needed columns:
104
+
If you use caching (defaults on), no columns will be queried unnecessarily. After the first query, cache will store the used column names and Nette\Database will run queries only with the needed columns:
0 commit comments