The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

SQL::Translator::Producer::MySQL - MySQL-specific producer for SQL::Translator

SYNOPSIS

Use via SQL::Translator:

  use SQL::Translator;

  my $t = SQL::Translator->new( parser => '...', producer => 'MySQL', '...' );
  $t->translate;

DESCRIPTION

This module will produce text output of the schema suitable for MySQL. There are still some issues to be worked out with syntax differences between MySQL versions 3 and 4 ("SET foreign_key_checks," character sets for fields, etc.).

SEE ALSO

SQL::Translator, http://www.mysql.com/.

AUTHORS

darren chamberlain <darren@cpan.org>, Ken Y. Clark <kclark@cpan.org>.