Prerequisites
Before proceeding, ensure the following prerequisites are met:- Install MindsDB locally via Docker or use MindsDB Cloud.
- To connect SQLite to MindsDB, install the required dependencies following this instruction.
- Install or ensure access to SQLite.
Implementation
This handler is implemented using the standardsqlite3
library that comes with Python.
The only required argument to establish a connection is db_file
that points to the database file that the connection is to be made to.
Optionally, this may also be set to :memory:
to create an in-memory database.