A MySQL database connector designed specifically for the Leo Platform. Version 3.0.2 is current. It provides a streamlined way to connect MySQL databases to Leo Platform workflows, handling connection pooling and query execution. Unlike generic MySQL clients, this package integrates seamlessly with Leo's data pipeline abstractions and configuration management. Releases follow Leo connectors' cadence. Supports modern MySQL features.
npm install leo-connector-mysqlNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows creating a MySQL client with credentials from env, running a query, and closing connection.
Replace callback usage with async/await or .then().
Use import syntax instead of require().
Use 'import LeoMySQL from ...' and construct with 'new LeoMySQL(...)' as per docs.
Remove explicit connect() calls; pass connection config to constructor.
Wrap constructor in try/catch or validate credentials before instantiation.
Run 'npm install leo-connector-mysql' or 'yarn add leo-connector-mysql'.
Use 'import * as LeoMySQL from 'leo-connector-mysql'' or reconfigure TypeScript.
Stop other MySQL processes or specify a different port in connection config.
No dependency data recorded yet.