MCPcopy
hub / github.com/eveningkid/denodb / MySQLOptions

Interface MySQLOptions

lib/connectors/mysql-connector.ts:8–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6import type { QueryDescription } from "../query-builder.ts";
7
8export interface MySQLOptions extends ConnectorOptions {
9 database: string;
10 host: string;
11 username: string;
12 password: string;
13 port?: number;
14 charset?: string;
15 logger?: LoggerConfig;
16}
17
18export class MySQLConnector implements Connector {
19 _dialect: SupportedSQLDatabaseDialect = "mysql";

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected