Help for this page

Select Code to Download


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