Connecting MySql Server in Visual Studio Code

Опубликовано: 04 Июль 2023
на канале: Cool IT Help
1,250
10

In this video tutorial, you will learn to connect MySQL server in Visual Studio code. Also, we will fix the issue of authentication mode by creating a new user with a password and then we will log in SQL server from Visual Studio code. I have explained everything in this tutorial step by step, so please watch the tutorial till the end for flawless connection of MySQL server from Visual Studio code.

Important SQL commands used in this tutorial are given below:

Now we will create a new user:
CREATE USER 'sqluser'@'%' IDENTIFIED
WITH mysql_native_password BY 'password123' ;

A new user is created by the name ‘sqluser’ with password ‘password123’.

Provide this user with all the privileges :
GRANT ALL PRIVILEGES ON . TO 'sqluser'@'%' ;

We need to validate these privileges :
FLUSH PRIVILEGES;

#mysqlserverconncectVSCode #coolithelp


На этой странице сайта вы можете посмотреть видео онлайн Connecting MySql Server in Visual Studio Code длительностью часов минут секунд в хорошем качестве, которое загрузил пользователь Cool IT Help 04 Июль 2023, поделитесь ссылкой с друзьями и знакомыми, на youtube это видео уже посмотрели 1,250 раз и оно понравилось 10 зрителям. Приятного просмотра!