Hi,
it might be easier to use the command line tools that come with MySQL like mysqldump. You can do something like this:
A) Dump
mysqldump --add-drop-table -uuser -p -honlinehost dbname > dump.sql
😎 Import
mysql -uuser -p -hlocalhost -Ddbname < dump.sql
You first need to create the target database on your PC.
The argument --add-drop-table adds DROP TABLE ... queries to the dump file so that the tables on the PC will be recreated.
Thomas