ok I was thinking maybe I shouldn't be importing wiht a GUI, does anyone know the line command version?
First and foremost, before importing data (or doing anything with your database that can potentially damage your existing data) take a backup. Yes, I know.. I know.. where's the excitement if you have a backup?
For the backup, do:
mysqldump -uusername databasename -p > backup.sql
Hitting enter and you'll be prompted for your password.
So if you have a mysql username that is 'leet' with a database named 'symbiants' it would be...
mysqldump -uleet symbiants -p > backup.sql
What happens here is that mysqldump will create a backup of the database 'symbiants.sql' into a file named 'backup.sql' which it'll create in the same directory you're in.
You guessed it, there are more fancy ways of doing this but the above command gets the job done.
Armed with our backup we can now continue on with our efforts to
deliberately destroy import data to our database with the following:
mysql -uusername databasename -p < import.sql
Still using our example from above..
mysql -uleet symbiants -p < import.sql
Hitting enter, you'll be promted with "Enter password:" when the correct password has been entered, there won't be much happening on the screen given everything works out. It'll only prompt you with error messages etc., but what are the odds that that will happen and besides, that's a completely different question than what I'm trying to answer.
On the screenshot you provided I noticed you've already got Apache running and odds are that you've got PHP too. Therefore, I would warmly recommend having a look at phpmyadmin over at
http://www.phpmyadmin.net/It's not as fancy as the GUI tools you may be used to, but it's not so flashy that it gets in your way.
Hope that helps.
Sincerely,
Gilfar