How can I access the MySQL command line with XAMPP for Windows? (ok)
https://stackoverflow.com/questions/698914/how-can-i-access-the-mysql-command-line-with-xampp-for-windows
Last updated
https://stackoverflow.com/questions/698914/how-can-i-access-the-mysql-command-line-with-xampp-for-windows
Last updated
Ask QuestionAsked 11 years, 4 months agoActive 8 months agoViewed 409k times13151
How can I access the MySQL command line with XAMPP for Windows?mysql windows xampp mysqldumpshare improve this question follow edited Mar 30 '09 at 21:44asked Mar 30 '09 at 20:39Nathan Long109k8989 gold badges305305 silver badges405405 bronze badgesadd a comment
Your MySQL binaries should be somewhere under your XAMPP folder. Look for a /bin folder, and you'll find the mysql.exe client around. Let's assume it is in c:\xampp\mysql\bin, then you should fireup a command prompt in this folder.
That means, fire up "cmd", and type:
If you want to use mysqldump.exe, you should also find it there.
Log into your mysql server, and start typing your commands.
Hope it helps...