Rechercher dans le manuel MySQL
5.7.1 Installing and Uninstalling User-Defined Functions
User-defined functions (UDFs) must be loaded into the server before they can be used. MySQL supports UDF loading at runtime.
To load a UDF, use the CREATE
FUNCTION
statement. For example:
The UDF file base name depends on your platform. Common suffixes
are .so
for Unix and Unix-like systems,
.dll
for Windows.
While a UDF is loaded, information about it is available from the
Performance Schema
user_defined_functions
table. See
Section 5.7.2, “Obtaining User-Defined Function Information”.
The statement also registers the UDF in the
mysql.func
system table to cause the server to
load it on subsequent restarts. For this reason,
CREATE FUNCTION
requires the
INSERT
privilege for the
mysql
database.
To remove a UDF, use the DROP
FUNCTION
statement. For example:
CREATE FUNCTION
unloads the UDF and
removes it from the mysql.func
system table.
For this reason, DROP FUNCTION
statement requires the DELETE
privilege for the mysql
database. With the UDF
no longer registered in the table, the server does not load the
UDF automatically for subsequent restarts.
You cannnot use CREATE FUNCTION
to
reinstall a function that has previously been installed. To
reinstall a function, first remove it with
DROP FUNCTION
, then install it
again with CREATE FUNCTION
. You
would need to do this, for example, if you upgrade to a new
version of MySQL that provides an updated implementation of the
function, or you recompile a new version of a function that you
have written. Otherwise, the server continues to use the old
version.
If the server is started with the
--skip-grant-tables
option, it does
not consult the mysql.func
table and does not
load the UDFs listed there.
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-udf-loading.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.