Skip to content

Commit

Permalink
update db-query-builder.md links (yiisoft#19626)
Browse files Browse the repository at this point in the history
  • Loading branch information
Arhell authored Oct 16, 2022
1 parent d41752b commit 48f6f7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/guide-fr/db-query-builder.md
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,7 @@ foreach ($query->each() as $username => $user) {
#### Limitations des requêtes par lots dans MySQL <span id="batch-query-mysql"></span>

La mise en œuvre des requêtes par lots de MySQL s'appuie sur la bibliothèque du pilote PDO. Par défaut, les requêtes MySQL sont
[`mises en tampon`](https://www.php.net/manual/en/mysqlinfo.concepts.buffering.php).
[`mises en tampon`](https://www.php.net/manual/fr/mysqlinfo.concepts.buffering.php).
Cela empêche d'utiliser le curseur pour obtenir les données, parce que cela n'empêche pas le jeu résultant complet d'être chargé dans la mémoire du client par le pilote.


Expand Down
2 changes: 1 addition & 1 deletion docs/guide-zh-CN/db-query-builder.md
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,7 @@ foreach ($query->each() as $username => $user) {

#### MySQL中批量查询的局限性(Limitations of batch query in MySQL) <span id="batch-query-mysql"></span>

MySQL 是通过 PDO 驱动库实现批量查询的。默认情况下,MySQL 查询是 [`带缓存的`](https://www.php.net/manual/en/mysqlinfo.concepts.buffering.php)
MySQL 是通过 PDO 驱动库实现批量查询的。默认情况下,MySQL 查询是 [`带缓存的`](https://www.php.net/manual/zh/mysqlinfo.concepts.buffering.php)
这违背了使用游标(cursor)获取数据的目的,
因为它不阻止驱动程序将整个结果集加载到客户端的内存中。

Expand Down

0 comments on commit 48f6f7c

Please sign in to comment.