| 6 | import type { QueryDescription } from "../query-builder.ts"; |
| 7 | |
| 8 | export 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 | |
| 18 | export class MySQLConnector implements Connector { |
| 19 | _dialect: SupportedSQLDatabaseDialect = "mysql"; |
nothing calls this directly
no outgoing calls
no test coverage detected