UNPKG

@200systems/mf-db-mysql

Version:

MySQL database client with connection pooling, migrations, and health monitoring

17 lines 402 B
import { BaseSqlAdapter } from '@200systems/mf-db-core'; export class MySqlSqlAdapter extends BaseSqlAdapter { getDatabaseType() { return 'mysql'; } supportsReturning() { return false; } adaptSql(sql) { // MySQL uses ? placeholders as-is return sql; } createPlaceholder(index) { return '?'; } } //# sourceMappingURL=adapter.js.map