Catalog-Specific Functions and Variables
MariaDB starting with 11.8
Catalog support is planned for 11.8.
Catalog Functions
catalog()
catalog()# returns the name of the current catalog.
MariaDB [def.test]> select catalog(); +-----------+ | catalog() | +-----------+ | def | +-----------+
Catalog Variables
@@catalogs
One can check if a server supports catalogs with:
select @@catalogs; +------------+ | @@catalogs | +------------+ | 1 | +------------+
1 means that the server is configured for catalogs.
Comments
Comments loading...
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.