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.
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 26/06/2006 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/mysql-rf-udf-loading.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.