1
0
Fork 0
Find a file
Daniel Baumann 7c85bce494
Releasing debian version 1.1.0-3.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-03-09 18:14:31 +01:00
.github/workflows Adding upstream version 1.1.0. 2025-02-24 20:14:26 +01:00
debian Releasing debian version 1.1.0-3. 2025-03-09 18:14:31 +01:00
src/harlequin_mysql Adding upstream version 1.1.0. 2025-02-24 20:14:26 +01:00
tests Adding upstream version 1.1.0. 2025-02-24 20:14:26 +01:00
.gitignore Adding upstream version 1.1.0. 2025-02-24 20:14:26 +01:00
.harlequin.toml Adding upstream version 1.1.0. 2025-02-24 20:14:26 +01:00
CHANGELOG.md Adding upstream version 1.1.0. 2025-02-24 20:14:26 +01:00
docker-compose.yml Adding upstream version 1.1.0. 2025-02-24 20:14:26 +01:00
LICENSE Adding upstream version 1.1.0. 2025-02-24 20:14:26 +01:00
Makefile Adding upstream version 1.1.0. 2025-02-24 20:14:26 +01:00
poetry.lock Adding upstream version 1.1.0. 2025-02-24 20:14:26 +01:00
pyproject.toml Adding upstream version 1.1.0. 2025-02-24 20:14:26 +01:00
README.md Adding upstream version 1.1.0. 2025-02-24 20:14:26 +01:00

harlequin-mysql

This repo provides the Harlequin adapter for MySQL.

Installation

harlequin-mysql depends on harlequin, so installing this package will also install Harlequin.

Using pip

To install this adapter into an activated virtual environment:

pip install harlequin-mysql

Using poetry

poetry add harlequin-mysql

Using pipx

If you do not already have Harlequin installed:

pip install harlequin-mysql

If you would like to add the Postgres adapter to an existing Harlequin installation:

pipx inject harlequin harlequin-mysql

As an Extra

Alternatively, you can install Harlequin with the mysql extra:

pip install harlequin[mysql]
poetry add harlequin[mysql]
pipx install harlequin[mysql]

Usage and Configuration

You can open Harlequin with the MySQL adapter by selecting it with the -a option and passing connection parameters as CLI options:

harlequin -a mysql -h localhost -p 3306 -U root --password example --database dev

The MySQL adapter does not accept a connection string or DSN.

Many more options are available; to see the full list, run:

harlequin --help

For more information, see the Harlequin Docs.