Rechercher dans le manuel MySQL
28.7.17.3 mysql_load_plugin()
struct st_mysql_client_plugin *mysql_load_plugin(MYSQL
*mysql, const char *name, int type, int argc, ...)
Description
Loads a MySQL client plugin, specified by name and type. An error occurs if the type is invalid or the plugin cannot be loaded.
It is not possible to load multiple plugins of the same type. An error occurs if you try to load a plugin of a type already loaded.
Specify the parameters as follows:
mysql
: A pointer to aMYSQL
structure. The plugin API does not require a connection to a MySQL server, but this structure must be properly initialized. The structure is used to obtain connection-related information.name
: The name of the plugin to load.type
: The type of plugin to load, or −1 to disable type checking. If type is not −1, only plugins matching the type are considered for loading.argc
: The number of following arguments (0 if there are none). Interpretation of any following arguments depends on the plugin type.
Another way to cause plugins to be loaded is to set the
LIBMYSQL_PLUGINS
environment variable to a
list of semicolon-separated plugin names. For example:
shell> export LIBMYSQL_PLUGINS="myplugin1;myplugin2"
Plugins named by LIBMYSQL_PLUGINS
are
loaded when the client program calls
mysql_library_init()
. No error
is reported if problems occur loading these plugins.
The LIBMYSQL_PLUGIN_DIR
environment
variable can be set to the path name of the directory in which
to look for client plugins. This variable is used in two ways:
During client plugin preloading, the value of the
--plugin-dir
option is not available, so client plugin loading fails unless the plugins are located in the hardwired default directory. If the plugins are located elsewhere,LIBMYSQL_PLUGIN_DIR
environment variable can be set to the proper directory to enable plugin preloading to succeed.For explicit client plugin loading, the
mysql_load_plugin()
andmysql_load_plugin_v()
C API functions use theLIBMYSQL_PLUGIN_DIR
value if it exists and the--plugin-dir
option was not given. If--plugin-dir
is given,mysql_load_plugin()
andmysql_load_plugin_v()
ignoreLIBMYSQL_PLUGIN_DIR
.
To check for errors, call the
mysql_error()
or
mysql_errno()
function. See
Section 28.7.7.15, “mysql_error()”, and
Section 28.7.7.14, “mysql_errno()”.
MYSQL mysql;
if(!mysql_load_plugin(&mysql, "myplugin",
MYSQL_CLIENT_AUTHENTICATION_PLUGIN, 0))
{
fprintf(stderr, "Error: %s\n", mysql_error(&mysql));
exit(-1);
}
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 26/06/2006, zuletzt geändert 26/10/2018
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/mysql-rf-mysql-load-plugin.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.