GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
MySQL::Diff(3) User Contributed Perl Documentation MySQL::Diff(3)

MySQL::Diff - Generates a database upgrade instruction set

  use MySQL::Diff;

  my $md = MySQL::Diff->new( %options );
  my $db1 = $md->register_db($ARGV[0], 1);
  my $db2 = $md->register_db($ARGV[1], 2);
  my $diffs = $md->diff();

Generates the SQL instructions required to upgrade the first database to match the second.

new( %options )
Instantiate the objects, providing the command line options for database access and process requirements.

Fuller documentation will appear here in time :)
  • register_db($name,$inx)

    Reference the database, and setup a connection. The name can be an already existing 'MySQL::Diff::Database' database object. The index can be '1' or '2', and refers both to the order of the diff, and to the host, port, username and password arguments that have been supplied.

  • db1()
  • db2()

    Return the first and second databases registered via "register_db()".

  • diff()

    Performs the diff, returning a string containing the commands needed to change the schema of the first database into that of the second.

Copyright (c) 2000-2016 Adam Spiers. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

mysqldiff, MySQL::Diff::Database, MySQL::Diff::Table, MySQL::Diff::Utils

Adam Spiers <mysqldiff@adamspiers.org>
2016-07-21 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.