phpMyAdmin
 sql >> Datenbank >  >> Database Tools >> phpMyAdmin

Wie pushe ich meine MySQL-Datenbank von phpmyadmin zu heroku's cleardb?

ClearDB empfiehlt die Verwendung von mysql und mysqldump zum Importieren von Daten. Von Häufig gestellte Fragen auf ClearDB.com:

For importing data into your MySQL database, we recommend that you use both the mysql command line client as well as the mysqldump database backup utility.

Die Syntax für den Import sieht ungefähr so ​​aus:

$ mysql <dbname> -u <username> -p<password> < <file.sql>