Remotequery-ts-mysql is a TypeScript MySQL driver designed to work with the RemoteQuery framework for executing remote SQL queries. The current stable version is 0.0.23, with frequent releases. It provides a MySQL-specific Driver implementation that supports database configuration, logging, and service entry SQL mapping, converting snake_case database columns to camelCase fields. Key differentiators include tight integration with RemoteQuery-ts-common, built-in logging (consoleLogger), and TypeScript-first design with exported types.
npm install remotequery-ts-mysqlNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Creates a MySqlDriver instance with database config, sets up logging, and defines a service entry SQL query.
Ensure all required config keys are provided before constructing MySqlDriver.
Use named parameters like :paramName in SQL strings for setServiceEntrySql.
Pin to exact version and test upgrades.
Run: npm install remotequery-ts-common@0.0.8
Ensure you use named import: import { MySqlDriver } from 'remotequery-ts-mysql'Provide full config with database, host, user, password.