Skip to content

Commit f0211ca

Browse files
committed
Handle MariaDB in config file
Closes #103
1 parent 554cf1b commit f0211ca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/providers/config-file-provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export const ConfigFileProvider: DatabaseEngineProvider = {
5656
return await reportNameError(config);
5757
}
5858

59-
if (config.type === 'mysql') {
59+
if (config.type === 'mysql' || config.type === 'mariadb') {
6060
const connection: EngineProviderCache | undefined = await mysqlConfigResolver(config)
6161
if (connection) this.cache?.push(connection)
6262
}

src/services/welcome-message-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export function showWelcomeMessage(context: vscode.ExtensionContext) {
3535

3636
showMessageAndButtons(`
3737
DevDb updated to ${currentVersion}.
38-
Add MCP instruction for Claude Code and other IDEs/MCP clients.
38+
Better config file parsing and improved UX.
3939
`, context);
4040
}
4141

0 commit comments

Comments
 (0)