This is the implementation of the MonetDB data handler for MindsDB. MonetDB is an open-source column-oriented relational database management system originally developed at the Centrum Wiskunde & Informatica in the Netherlands. It is designed to provide high performance on complex queries against large databases, such as combining tables with hundreds of columns and millions of rows.Documentation Index
Fetch the complete documentation index at: https://docs.mindsdb.com/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
Before proceeding, ensure the following prerequisites are met:- Install MindsDB locally via Docker or Docker Desktop.
- To connect MonetDB to MindsDB, install the required dependencies following this instruction.
- Install or ensure access to MonetDB.
Implementation
This handler is implemented usingpymonetdb, a Python library that allows you to use Python code to run SQL commands on the MonetDB database.
The required arguments to establish a connection are as follows:
useris the username associated with the database.passwordis the password to authenticate your access.hostis the host name or IP address.portis the port through which TCP/IP connection is to be made.databaseis the database name to be connected.schema_nameis the schema name to get tables. It is optional and defaults to the current schema if not provided.