MariaDB
This is the implementation of the MariaDB data handler for MindsDB.
MariaDB is a community-developed, commercially supported fork of the MySQL relational database management system (RDBMS), intended to remain free and open-source software under the GNU General Public License. MariaDB is intended to maintain high compatibility with MySQL, library binary parity and exact matching with MySQL APIs and commands, allowing it in many cases to function as a replacement for MySQL.
Prerequisites
Before proceeding, ensure the following prerequisites are met:
- Install MindsDB locally via Docker or use MindsDB Cloud.
- To connect MariaDB to MindsDB, install the required dependencies following this instruction.
- Install or ensure access to MariaDB.
Implementation
This handler is implemented using mysql-connector
, a self-contained Python driver for communicating with MariaDB servers.
Connect MariaDB to MindsDB by providing the URL parameter. Learn more here.
Connect MariaDB to MindsDB by providing the URL parameter. Learn more here.
Connect MariaDB to MindsDB by providing the following parameters:
user
is the database user.password
is the database password.host
is the host name, IP address, or URL.port
is the port used to make TCP/IP connection. Default: 3306.database
is the database name.
There are several optional parameters that can be used as well.
ssl
is thessl
parameter value that indicates whether SSL is enabled (True
) or disabled (False
).ssl_ca
is the SSL Certificate Authority.ssl_cert
stores SSL certificates.ssl_key
stores SSL keys.
Usage
In order to make use of this handler and connect to the MariaDB database in MindsDB, the following syntax can be used:
You can use this established connection to query your table as follows.