Manuel:table iwlinks

This page is a translated version of the page Manual:Iwlinks table and the translation is 100% complete.
Manuel:Contenu Schéma de base de données MédiaWiki table iwlinks
Version de MediaWiki :
1.17

La table iwlinks enregistre les liens interwiki avec leur cible. A ne pas confondre avec la table Langlinks .

Champs

iwl_from

Le page_id de la page qui fait la référence (par exemple la page locale sur laquelle le lien apparaît).

iwl_prefix

Le code du préfixe interwiki de la cible. Celui-ci est utilisé de la même manière que l'espace de noms est utilisé lors de l'édition.

iwl_title

Le titre de la page cible, y compris l'espace de noms (style FULLPAGENAME). Les espaces sont traduits en caractères soulignés '_', mais la première lettre n'est pas mise en majuscule automatiquement. Et donc par exemple, un lien interwiki vers w:foo bar pourrait avoit un titre_iwl dans « foo_bar » .

Résumé du schéma

Version de MediaWiki :
1.35

DESCRIBE iwlinks;

+------------+------------------+------+-----+---------+-------+
| Field      | Type             | Null | Key | Default | Extra |
+------------+------------------+------+-----+---------+-------+
| iwl_from   | int(10) unsigned | NO   | PRI | 0       |       |
| iwl_prefix | varbinary(32)    | NO   | PRI |         |       |
| iwl_title  | varbinary(255)   | NO   | PRI |         |       |
+------------+------------------+------+-----+---------+-------+
Versions de MediaWiki :
1.17 – 1.34

DESCRIBE iwlinks;

+------------+------------------+------+-----+---------+-------+
| Field      | Type             | Null | Key | Default | Extra |
+------------+------------------+------+-----+---------+-------+
| iwl_from   | int(10) unsigned | NO   | PRI | 0       |       |
| iwl_prefix | varbinary(20)    | NO   | PRI |         |       |
| iwl_title  | varbinary(255)   | NO   | PRI |         |       |
+------------+------------------+------+-----+---------+-------+

Les index

Version de MediaWiki :
1.42

SHOW INDEX IN iwlinks;

+---------+------------+-----------------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
| Table   | Non_unique | Key_name              | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment |
+---------+------------+-----------------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
| iwlinks |          0 | PRIMARY               |            1 | iwl_from    | A         |           0 |     NULL | NULL   |      | BTREE      |         |               |
| iwlinks |          0 | PRIMARY               |            2 | iwl_prefix  | A         |           0 |     NULL | NULL   |      | BTREE      |         |               |
| iwlinks |          0 | PRIMARY               |            3 | iwl_title   | A         |           0 |     NULL | NULL   |      | BTREE      |         |               |
| iwlinks |          1 | iwl_prefix_title_from |            1 | iwl_prefix  | A         |           0 |     NULL | NULL   |      | BTREE      |         |               |
| iwlinks |          1 | iwl_prefix_title_from |            2 | iwl_title   | A         |           0 |     NULL | NULL   |      | BTREE      |         |               |
| iwlinks |          1 | iwl_prefix_title_from |            3 | iwl_from    | A         |           0 |     NULL | NULL   |      | BTREE      |         |               |
+---------+------------+-----------------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+

Voir aussi