Search



Search Results
Displaying 3511 to 3520 of 3567 total results
https://dev.mysql.com/doc/extending-mysql/8.4/en/compiling-plugin-libraries.html
After your plugin is written, you must compile it and install it. The procedure for compiling shared objects varies from system to system. If you build your library using CMake, it should be able to generate the correct compilation commands for ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/plugin-api-components.html
The WITH PARSER clause for full-text index creation associates a full-text parser plugin with a given FULLTEXT index. For new MySQL installations, this table is created during the installation process. SQL statements: INSTALL PLUGIN registers a ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/plugin-api.html
MySQL supports a plugin API that enables creation of server components. This table is created as part of the MySQL installation process. Plugins can be loaded at server startup, or loaded and unloaded at runtime without restarting the server. The ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/plugin-data-structures.html
To create multiple client plugins, separate plugin libraries must be used. A plugin library file includes descriptor information to indicate what plugins it contains. If the plugin library contains any server plugins, it must include the following ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/porting.html
Note If you create a new port of MySQL, you are free to copy and distribute it under the GPL license, but it does not make you a copyright holder of MySQL. Before attempting to port MySQL to other operating systems, check the list of currently ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/writing-daemon-plugins.html
A daemon plugin is a simple type of plugin used for code that should be run by the server but that does not communicate with it. This section describes how to write a daemon server plugin, using the example plugin found in the plugin/daemon_example ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/writing-information-schema-plugins.html
It creates a simple INFORMATION_SCHEMA table named SIMPLE_I_S_TABLE that has two columns named NAME and VALUE. This section describes how to write a server-side INFORMATION_SCHEMA table plugin. For example code that implements such plugins, see the ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/writing-keyring-plugins.html
The general descriptor also refers to keyring_system_variables, a structure that exposes a system variable to the SHOW VARIABLES statement: static struct st_mysql_sys_var *keyring_system_variables[]= { MYSQL_SYSVAR(data), NULL }; The keyring_init ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/writing-plugins-overview.html
The following procedure provides an overview of the steps needed to create a plugin library. These conditions apply to plugin writing: MySQL header files used by plugins contain C++ code, so plugins must be compiled as C++ code. You must compile ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/writing-plugins.html
To create a plugin library, you must provide the required descriptor information that indicates what plugins the library file contains, and write the interface functions for each plugin. Every server plugin must have a general descriptor that ...
Displaying 3511 to 3520 of 3567 total results