Using CONNECT - Exporting Data From MariaDB
The CONNECT storage engine has been deprecated.
SELECT
plugin_name AS handler,
plugin_version AS version,
plugin_author AS author,
plugin_description AS description,
plugin_maturity AS maturity
FROM
information_schema.plugins
WHERE
plugin_type = 'STORAGE ENGINE';CREATE TABLE handout
ENGINE=CONNECT
table_type=XML
file_name='handout.htm'
header=yes
option_list='name=TABLE,coltype=HTML,attribute=border=1;cellpadding=5,headattr=bgcolor=yellow'
AS
SELECT
plugin_name AS handler,
plugin_version AS version,
plugin_author AS author,
plugin_description AS description,
plugin_maturity AS maturity
FROM
information_schema.plugins
WHERE
plugin_type = 'STORAGE ENGINE';Last updated
Was this helpful?

