Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
|
Because it must be run from a terminal, and having options passed to it.
It's displaying the options, but as windows see the program as stopped, it closes the windows right after that.
I believe that you can say windows to keep the windows open after the end of the program if you right click and ask for the file properties.
Last time I used a windows station (it was windows 98), I had to open a shell (I believe it's start button -> run -> cmd.exe on windows 2000, 2003 and xp) and then either have put the mysql bin directory in your path, or navigate to your mysql bin directory through a series of "cd ..", "cd {directory name}" to access it and launch mysql.exe
I'm running linux, so I cannot say much more, sorry.
On my linux box, I connect to my local mysql with this command line:
Code:
mysql -u webdev -h 127.0.0.1 -p sandbox
Meaning that I connect on my local computer (-h 127.0.0.1), with the user webdev (-u webdev), that the front-end must ask me for a password to authenticate (-p) and to the database named "sandbox"
__________________
Only a biker knows why a dog sticks his head out the window.
|