Rechercher dans le manuel MySQL
25.17 The INFORMATION_SCHEMA PLUGINS Table
The PLUGINS
table provides
information about server plugins.
The PLUGINS
table has these columns:
PLUGIN_NAME
The name used to refer to the plugin in statements such as
INSTALL PLUGIN
andUNINSTALL PLUGIN
.PLUGIN_VERSION
The version from the plugin's general type descriptor.
PLUGIN_STATUS
The plugin status, one of
ACTIVE
,INACTIVE
,DISABLED
,DELETING
, orDELETED
.PLUGIN_TYPE
The type of plugin, such as
STORAGE ENGINE
,INFORMATION_SCHEMA
, orAUTHENTICATION
.PLUGIN_TYPE_VERSION
The version from the plugin's type-specific descriptor.
PLUGIN_LIBRARY
The name of the plugin shared library file. This is the name used to refer to the plugin file in statements such as
INSTALL PLUGIN
andUNINSTALL PLUGIN
. This file is located in the directory named by theplugin_dir
system variable. If the library name isNULL
, the plugin is compiled in and cannot be uninstalled withUNINSTALL PLUGIN
.PLUGIN_LIBRARY_VERSION
The plugin API interface version.
PLUGIN_AUTHOR
The plugin author.
PLUGIN_DESCRIPTION
A short description of the plugin.
PLUGIN_LICENSE
How the plugin is licensed; for example,
GPL
.LOAD_OPTION
How the plugin was loaded. The value is
OFF
,ON
,FORCE
, orFORCE_PLUS_PERMANENT
. See Section 5.6.1, “Installing and Uninstalling Plugins”.
Notes
The
PLUGINS
table is a nonstandardINFORMATION_SCHEMA
table.For plugins installed with
INSTALL PLUGIN
, thePLUGIN_NAME
andPLUGIN_LIBRARY
values are also registered in themysql.plugin
table.For information about plugin data structures that form the basis of the information in the
PLUGINS
table, see Section 29.2, “The MySQL Plugin API”.
Plugin information is also available from the
SHOW PLUGINS
statement. See
Section 13.7.6.25, “SHOW PLUGINS Syntax”. These statements are equivalent:
Traduction non disponible
Le manuel MySQL n'est pas encore traduit en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Document créé le 26/06/2006, dernière modification le 26/10/2018
Source du document imprimé : https://www.gaudry.be/mysql-rf-plugins-table.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.