SQL::Translator::Producer::MySQL - MySQL-specific producer for SQL::Translator |
SQL::Translator::Producer::MySQL - MySQL-specific producer for SQL::Translator
Use via SQL::Translator:
use SQL::Translator;
my $t = SQL::Translator->new( parser => '...', producer => 'MySQL', '...' ); $t->translate;
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.).
Normally the tables will be created without any explicit table type given and so will use the MySQL default.
Any tables involved in foreign key constraints automatically get a table type
of InnoDB, unless this is overridden by setting the mysql_table_type
extra
attribute explicitly on the table.
The producer recognises the following extra attributes on the Schema objects.
SQL::Translator, http://www.mysql.com/.
darren chamberlain <darren@cpan.org>, Ken Y. Clark <kclark@cpan.org>.
SQL::Translator::Producer::MySQL - MySQL-specific producer for SQL::Translator |