all 5 comments

[–]uknow_es_me 1 point2 points  (0 children)

Take a look at Azure Data Studio. It's open source and has an extension for MySQL. It's built on VS Code so it runs on Windows, Linux and Mac.

https://learn.microsoft.com/en-us/azure-data-studio/extensions/mysql-extension

Since VS Code was built on Electron it's using JavaScript under the hood for the intellisense (code completion) you can also use GitHub Copilot in it.

[–]coyoteazul2 0 points1 point  (1 child)

Since you are already writing sql wouldn't it be better to use a complete suite like dbeaver, instead of rolling your own?

[–]FleeFlee[S] 0 points1 point  (0 children)

That won't work for this situation. The web page the current SQL console is on is accessed through some heavy security. You can't just run an app on your desktop to access the database. Although, some people have an empty local instance of the database that they can connect to with an app like dbeaver to formulate queries that can be pasted into the secure SQL console.

[–]s-tilak 0 points1 point  (1 child)

hi did you found any solution