- or download this
mysqldump -d database > test_database.schema
echo create database test_database | mysql
mysql test_database < test_database.schema
- or download this
mysqldump test_database > test_database.schema
- or download this
mysql test_database < test_database.schema
mysql test_database < alter_database
mysql test_database < add_test_data
./Build test
- or download this
mysql database < alter_database
- or download this
use Algorithm::Diff;
...
print "< $_\n" for $diff->Items(1);
print "> $_\n" for $diff->Items(2);
}