Man, this is the second time I watch this video, several months apart, and it's the second it saves me life. THANK YOU SO MUCH!!!!!
@richiemello3447 Жыл бұрын
What a steep learning curve for something that is supposed to be straight forward. Thanks for the video!!!
@jessicabragg52612 жыл бұрын
After searching for like 30 minutes trying to find this answer, you video saved my sanity! Thank you!
@entertainment-bx7sb2 жыл бұрын
it didnt worked in mine
@slimshady6242 Жыл бұрын
Are you really that beautiful
@nknnithinabc2 жыл бұрын
Tried a lot of vids for connect mysqlworkbench with IDE, none worked, this one is a life saviour
@jeanahollings3 жыл бұрын
oy my gosh, thank you, thank you, thank you! i've been stuck on this for weeks now! you're walk through included every problem i ran into with vs code! i
@BoostMyTool3 жыл бұрын
Thank you too for your subscription to the channel
@tvstation81022 жыл бұрын
Great video, was the last piece I needed to get VSCODE talking to a database. Signed a budding developer:)
@vivekjadhav97442 жыл бұрын
Great video & awesome explanation. Saved me a lot of time. Now I can enjoy SQL with the comfort of VS code
@iMplimentation2 жыл бұрын
THANK YOU!!! You don't know how helpful your video was to me
@hanafirjl2 жыл бұрын
thanks a lot it works, i browsed a bit and couldn't find the answer before i stumbled upon this great vid 👌
@3091mrcrowley2 жыл бұрын
Awesome, it worked! You explained the whole thing very clearly! Thanks a lot man!
@biswabikashparida9691 Жыл бұрын
Grant privileges one not working for me
@biswabikashparida9691 Жыл бұрын
Pls help
@DrxppyAMV3 ай бұрын
@@biswabikashparida9691 no
@maharun Жыл бұрын
Thanks a lot. You're the best! Short and concise!
@soIatido9 ай бұрын
THANKK YOU! This was also the last piece I needed
@MrBEEOUTCH2 жыл бұрын
Spent 4 hours and you saved me so much time.
@VigneshKaniveta7 ай бұрын
it is showing=> connect ECONNREFUSED ::1:3306
@tarunsingh9512 жыл бұрын
Man you are awesome!! thank you very much. You saved me from a lot of trouble.
@prateekpal73912 жыл бұрын
version not showing please help its showing ; - 'mysql' is not recognized as an internal or external command operable program or batch file
@tkurtalan2 жыл бұрын
Should change the directory to bin folder by the following command: cd Program Files\MySQL\MYSQL Server 8.0\bin But ofcourse go to main directory first by the command: cd\
@__._.._._.2 жыл бұрын
@@tkurtalan it's showing system cannot find the path specified
@iam.mystic2 жыл бұрын
There's another video in the i button. Worked out for me
@techrose5 ай бұрын
This tutorial was a life saver! Thank you!!
@xeliotrop2 жыл бұрын
I have a problem at 4:00 it says ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
@PriyaVerma-zk2zx2 жыл бұрын
I am facing same problem how did you solved it?
@xeliotrop2 жыл бұрын
@@PriyaVerma-zk2zx I somehow managed to reset my password but I can't remember exactly how I did it
@iamkashyapkumar2 жыл бұрын
Open task manager > go to services > search for mysql80 or something like this > right click and start the service
@vikalpparashar78982 жыл бұрын
go sudo or if that doesnt work in sudo try mysql -u root mysql
@Chandankumaryck2 жыл бұрын
@@PriyaVerma-zk2zx did you solved the problem
@manikanthooli9409 ай бұрын
Ur accent is soo good❤
@livisliquoro55722 жыл бұрын
Hi, When I am setting up connections I am not getting list under connections tab in order to get connect and disconnect connection. Can you please help me in this
@modestasriabovas39772 жыл бұрын
'mysql' is not recognized as an internal or external command, operable program or batch file.
@modestasriabovas39772 жыл бұрын
Would be great if someone helped me out.
@maccoskuni86462 жыл бұрын
@@modestasriabovas3977 Hey budy on your cmd just cd to C:\Program Files\MySQL\MySQL Server 8.0\bin
@maccoskuni86462 жыл бұрын
@@modestasriabovas3977 Find your mysql folder then navigate to bin and then run mysql --version
@BoostMyTool2 жыл бұрын
watch this video kzbin.info/www/bejne/noHQlatug7uSe6s
please i have been getting ER_BAD_DB_ERROR: Unknown database 'shop' after setting up my connection
@djeguiwague2911 Жыл бұрын
Thanks for this video.. It worked so well for me too.. Have a nice day
@MananSuriGaming2 жыл бұрын
after i type the password it says ERROR 2059 (HY000): Authentication plugin 'caching_sha2_password' cannot be loaded: The specified module could not be found plss help
@black_south52227 ай бұрын
Thanks for this tutorial , your accent seems like you are Tunisian
@حريةكرامة3 жыл бұрын
تحية للتوانسة متابعك الجديد من المغرب keep up the good work
@BoostMyTool3 жыл бұрын
Vous êtes le bienvenu et merci pour votre inscription
@حريةكرامة3 жыл бұрын
@@BoostMyTool لا شكرا على واجب..اتمنى لك مسيرة موفقة
@saiei Жыл бұрын
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'PRIVILAGES ON *-* TO 'sqluser'@'%'' at line 1
@akhiljella5958 Жыл бұрын
@@samuellazar554 this also not working, facing same error
@kingoflegends1029 Жыл бұрын
@@akhiljella5958 in the second line GRANT ALL PRIVILEGES ON . TO 'sqluser'@'%' WITH GRANT OPTION; the "." needs to be surrounded by ' * ' symbol, youTube uses the symbol to format text to bold " *Like this* " so it doesn't show up in reply
@jamaljaafar6355 Жыл бұрын
You need to Change ‘ into ' attention on that
@hazikali64349 ай бұрын
@@samuellazar554 mysql> CREATE USER 'sqluser'@'%' IDENTIFIED BY 'password'; mysql> GRANT ALL PRIVILEGES ON *.* TO 'sqluser'@'%' WITH GRANT OPTION; mysql> FLUSH PRIVILEGES; use this
@hazikali64349 ай бұрын
you have to add two asterisk before and after full stop (.)
@deepasri96982 жыл бұрын
Thanks for this video.. It worked so well for me too.. Have a nice day😊
@zeus12345y11 ай бұрын
this video was really helpfull,,,thanks broo
@omonditony93442 жыл бұрын
You've saved my ass within a skiddle of minutes Thanks so much
@josiah87892 жыл бұрын
for those having trouble with "check the manual that corresponds to your mysql server version for the right syntax to suer near 'IDENTIFIED BY 'password' " try this CREATE USER 'user'@'localhost' IDENTIFIED BY 'password'; GRANT ALL ON *.* to user_name@localhost IDENTIFIED BY 'password'; replace user_name with whatever your username is, and i think password is supposed to be replaced with whatever you set your password to
@firstprinciples98542 жыл бұрын
Very clear and detailed explanation. Thanks
@synzyro6593 ай бұрын
Keep up the good work man thanks so much 🙏🙏
@TrusteestDesiChhoraАй бұрын
Thank u so Mach one of the video all the problem solve thank you so much❤😊
@SiddharthRay1 Жыл бұрын
awesome video, straight forward and easy explanation.
@anup_narvekar3 жыл бұрын
This video is a life saver! Thanks a ton!!!
@BoostMyTool3 жыл бұрын
You're welcome
@ngumpel2227 ай бұрын
Thanks very much for this. It has greatly helped me
@gizachewalemu45342 жыл бұрын
Great Explanation! Thank you Sir.
@3r3bu5x92 жыл бұрын
thanks a ton! vs code is unreal! it can run anything!
@florincordos10972 жыл бұрын
I followed all the steps until at the terminal step where i have an error,this is the message from my command prompt:-> The term 'mysql' is not recognized as the name of a cmdlet, function, script file, or operable program. Check t he spelling of the name, or if a path was included, verify that the path is correct and try again.
@BoostMyTool2 жыл бұрын
did you execute the command from the bin folder of mysql ? if yes, please check if this folder contains an executable file called "mysql.exe". if you don't have mysql installed, you should install it as explained in this video: kzbin.info/www/bejne/noHQlatug7uSe6s
@nabilakhansah2 жыл бұрын
Thank you so much sir, it worked! your explained is so good
@slowcoding Жыл бұрын
Many thanks for clear explanations!
@swagbgm48306 ай бұрын
I got an Error opening connection Access denied for user 'admin'@'localhost'(using password:YES)
@tiagodmota58402 жыл бұрын
You are the best. Greetings fom 🇧🇷
@cspointbysaurav2 жыл бұрын
My connection has been created and sql queries are executing successfully but in connections tab there are no connections can you please help me with this?
@Rex1455010 ай бұрын
Excellent Video.
@khaledhisham36246 ай бұрын
Your English is so great , where are you from
@marved-rv2kk Жыл бұрын
Can you please help me? I followed all the steps but i have an error: Error opening connection ER_BAD_DB_ERROR: Unknown database 'myshop'
@shmel850 Жыл бұрын
same
@shmel850 Жыл бұрын
Did you fix it?
@marved-rv2kk Жыл бұрын
@@shmel850 yes just create a database named myshop in mysql terminal
@marved-rv2kk Жыл бұрын
@@shmel850 CREATE DATABASE myshop;
@fernandadaisy252 жыл бұрын
I have to ensure something. So we must install MySQL firstly to our local system in order to successfully run it in vscode, is that true?
@marierie101 Жыл бұрын
Yes
@aartikhatri21092 ай бұрын
@@marierie101 yrr ye to kisi ne bataya hi nahi even in comments everyone is like run this command in cmd they must hv cleared pehle install kr then uska location dal.........
@navyasri2713 жыл бұрын
When typing grant all privileges command...its saying that no database selected
@SkyV778 ай бұрын
bro how ur cmd prompt shows mysql ? mine says that no such thing found
@kiaraargueta201111 ай бұрын
Not sure if I’m the only one but it’s not letting me run it on my Mac. When I try opening run.bat it takes me back to visual studio code…
@benc79102 жыл бұрын
Hi, at @2:08 in the field 'Database' , you have 'myshop' , is it required to first create a database somewhere else and then use it when creating a connection ? Thank you
@will_47992 жыл бұрын
I had this question too. One way to go about it is: Run "mysql -u root -p" in cmd. Then create a database using: CREATE DATABASE myshop;
@biroluzun5126 Жыл бұрын
@@will_4799 thank you so much it worked.
@hayaalshareef13562 жыл бұрын
I have a macbook pro laptop, and I am having issues with running the commands in the terminal. It keeps on saying mysql: command not found. What should I do?
@Theotav2 жыл бұрын
brew install mysql
@hayaalshareef13562 жыл бұрын
@@Theotav I do have it installed
@yesmanforever10022 жыл бұрын
Awesome man, just awesome! Thanks.
@usoppgostoso Жыл бұрын
In my case, I'm trying to connect to a MySQL server on Azure, and it has SSL. Couldn't find any option to use my CA Certificate.
@fluttterdev1k Жыл бұрын
thanks friend it was a great tutorial
@alphabetagamma3113 Жыл бұрын
while installing, the errors i got are different from the ones you are seeing. also when I am trying to check my MySQL version on command prompt, i cant see the version. can anyone please help?
@rain_yy11 ай бұрын
same problem
@marsakatlavincentprajwal2892 жыл бұрын
Sir still i am getting access denied error for user in vs code
@anonymous-37202 жыл бұрын
How and Where did you create the password?
@minhnguyentue5248 Жыл бұрын
You are awesome!! thank you very much.
@yacinehbrahim60732 жыл бұрын
You made my day, thanks a lot
@Irfanmalik-e6h3 ай бұрын
when i run sql files in vscode terminal mysql> source schema.sql; it give this error ERROR: Failed to open file 'schema.sql', error: 2 Please help me
@technicalmindsstudios1977 Жыл бұрын
hii tanhs for this tutorial iteally helped
@iichika50410 ай бұрын
Bro "mysql --version" Doesn't work
@SkyV778 ай бұрын
yes same here
@Sa.m1403 жыл бұрын
C:\Users\ابو علي>mysql -- version 'mysql' is not recognized as an internal or external command, operable program or batch file.
@BoostMyTool3 жыл бұрын
This means mysql is not installed on your computer OR you did not add mysql to your system environment variables. to install mysql, you can either install mysql or xampp (which contains mysql) or wampserver (contains mysql). Then you need to add mysql to your system environment variables. you can see this video for more details: kzbin.info/www/bejne/aJDNkK2rm6yXjpY
@ДмитрийБаженов-д3в Жыл бұрын
hi there! I done all instructions and finally I have got the connection. But I get error when Im trying make require : Cannot read properties of undefined (reading 'undefined') Help me please!
@thewonder474 Жыл бұрын
Thank you so much. its really work
@TheInternetFan2 жыл бұрын
4:16 couldn't you use the Terminal that is part of VS Code instead of resorting to command prompt.
@AthelstanEngland Жыл бұрын
thanks, I thought this was the answer but using MariaDB 10.5.8 and trying to create the user using this old password format gives the error [check.... syntax to use near ' BY 'password' ' at line 1.] It seems on github that this function is depreciated. Any thoughts? I can't get connected using either VSCode or VS 2022.
@sjanakys6769 Жыл бұрын
Firstmy sql connection not showing ^ arrow and in command prompt is not recognize as internal or external command
@subhashnisoundhar76549 ай бұрын
I was open the vs code to set a database and start it to connect the process of database and in connection settings ther was error like self signed certificate in certificate chain.....help me to slove this problem sir😢
@X-factor611 ай бұрын
thanks man :)
@sweetcandy78 Жыл бұрын
the command prompt show this error 'mysql' is not recognized as an internal or external command, operable program or batch file. how can i fix it?
@geraldmbuthia8780 Жыл бұрын
Add to environment variable
@Tewahedo16 Жыл бұрын
Before I do what you show as do I have to do anything ?other than downloading visual studio code?
@nilamkautkar4206 Жыл бұрын
Very useful..thanks
@UwU-dx5hu2 жыл бұрын
Please please please help me. The sqltool icon which is on the left sidebar of vs code disappeared. Without that I am not Being able to connect to mysql. Pleade tell me how can i bring back the icon
@nicetomeetugaming70242 жыл бұрын
Thanks this video is helpful.
@zubairahmed-x8d9 ай бұрын
thank u so much as i was facing this issue
@greenary35872 жыл бұрын
sir my cmd only playing microsoft play store coding download even when i download python from website it will not work and when i download with microsoft it will work what i do for solve this problem i dont understan what the problem
@ReasonablyRetro Жыл бұрын
Hey thank you! I got everything working up until trying to click the magnifying glass and see what I have inserted into my tables. I get the error "ERROR: Error while showing table records Cannot read properties of undefined (reading 'total')" source is the SQLtools extension. Nothing on the github the ticket has been open for 2 years LOL. Any thoughts? Cheers!
@moloko_127 Жыл бұрын
Why dont I have the button for execution the sql code ?
@ngn18102 жыл бұрын
After I created the new database, I was unable to execute it...it said 'query with errors'...somebody help
@SoftwareSolutons3 жыл бұрын
Did you tried it , with a huge database remotely ?It is terribly slow there...
@trevorjohnson71282 жыл бұрын
when going to CMD, i get the error 'mysql' is not recognized as an internal or external command, operable program or batch file. any fixes?
@BoostMyTool2 жыл бұрын
see this: kzbin.info/www/bejne/noHQlatug7uSe6s
@user-cd8cg3yr1q Жыл бұрын
Referenced libraries under Java project is not visible . Please help me with this 🙏
@toancdu Жыл бұрын
Thank you so much for your help
@liongamer5382 жыл бұрын
thanks bro nice explained
@aamalservices76302 жыл бұрын
Thank you, appreciate your help
@user562902 жыл бұрын
I have done all the things in the video, but still getting the same error and databases are not showing. what should I do?
@thathojohannes18622 жыл бұрын
same here ey
@stockmarketinusa12512 жыл бұрын
how to open the project in this which i have already in my computr
@susamay2 жыл бұрын
Finally! Working.
@yukunshang53153 жыл бұрын
It worked! Thanks a lot
@BoostMyTool3 жыл бұрын
You're welcome
@Alex_frost19942 жыл бұрын
Sir please tell me which version of Microsoft visual studio code is stable??i basically do everything in visual studio code be it sql files,c,c++,python etc.But recently i formatted my whole pc.Now i need to install again
@BoostMyTool2 жыл бұрын
you cannot choose the version, vscode will update itself to the latest version automatically
@tanishqkathar26 Жыл бұрын
I am getting an issue in command prompt... It's showing mysql is not recognized as an internal or external parameter ... Please helppppp as soon as possible...
@conmoetramtinh Жыл бұрын
have u got the answer, i'm stuck too
@nikhilpal03029 ай бұрын
First of all you edit the path in your system. c drive ->program files->MySQL -> my SQL server-> Bin select the path and copy it And type in cmd edit environment variables paste karke ek baar chek karna 😊😊
@TotallynotBINH Жыл бұрын
Thank you so much my good sir
@motodad18562 жыл бұрын
I get this error : Connect ECONNREFUSED, what does this mean.
@jnandeepdevsarma2966 Жыл бұрын
after saving the script run on active connection missing. Kindly help
@handphoneblogger54342 жыл бұрын
4:23 I stopped here...error 1524 plugin mysql native password is not loaded please help
@wearecoader1958 Жыл бұрын
Simple explain that is good but i want to ask how to connect with our java program.❤