Export from wamp mysql import into mariadb xampp
mysqldump -u root -p database > dumpfile.sql
mysql -u root -p --database=db_name < dumpfile.sql
Comments
Post a Comment