Importing a MySQL database
Its easy to import an existing database into Islandnet.com's database server using Shell commands.
$ mysql -u username -p -h mysql55.islandnet.com
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1757151
Server version: 5.5.5-m3 FreeBSD port: mysql-server-5.5.5
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> use databasename
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> source filenameofexportedDB.sql
... Bunch of import stuff happens here
mysql> quit
Bye