Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

sql::translator::producer::mysql(3pm) [debian man page]

SQL::Translator::Producer::MySQL(3pm)			User Contributed Perl Documentation		     SQL::Translator::Producer::MySQL(3pm)

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.). ARGUMENTS
This producer takes a single optional producer_arg "mysql_version", which provides the desired version for the target database. By default MySQL v3 is assumed, and statements pertaining to any features introduced in later versions (e.g. CREATE VIEW) are not produced. Valid version specifiers for "mysql_version" are listed here Table Types 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. Extra attributes. The producer recognises the following extra attributes on the Schema objects. field.list Set the list of allowed values for Enum fields. field.binary, field.unsigned, field.zerofill Set the MySQL field options of the same name. field.renamed_from, table.renamed_from Use when producing diffs to indicate that the current table/field has been renamed from the old name as given in the attribute value. table.mysql_table_type Set the type of the table e.g. 'InnoDB', 'MyISAM'. This will be automatically set for tables involved in foreign key constraints if it is not already set explicitly. See "Table Types". Please note that the "ENGINE" option is the preferred method of specifying the MySQL storage engine to use, but this method still works for backwards compatibility. table.mysql_charset, table.mysql_collate Set the tables default charater set and collation order. field.mysql_charset, field.mysql_collate Set the fields charater set and collation order. SEE ALSO
SQL::Translator, http://www.mysql.com/. AUTHORS
darren chamberlain <darren@cpan.org>, Ken Youens-Clark <kclark@cpan.org>. perl v5.14.2 2012-01-18 SQL::Translator::Producer::MySQL(3pm)

Check Out this Related Man Page

SQL::Translator::Producer::HTML(3pm)			User Contributed Perl Documentation		      SQL::Translator::Producer::HTML(3pm)

NAME
SQL::Translator::Producer::HTML - HTML producer for SQL::Translator SYNOPSIS
use SQL::Translator::Producer::HTML; DESCRIPTION
Creates an HTML document describing the tables. The HTML produced is composed of a number of tables: Links A link table sits at the top of the output, and contains anchored links to elements in the rest of the document. If the nolinktable producer arg is present, then this table is not produced. Tables Each table in the schema has its own HTML table. The top row is a row of <th> elements, with a class of FieldHeader; these elements are Field Name, Data Type, Size, Default Value, Other and Foreign Key. Each successive row describes one field in the table, and has a class of FieldCell$item, where $item id corresponds to the label of the column. For example: <tr> <td class="FieldCellName"><a name="random-id">id</a></td> <td class="FieldCellType">int</td> <td class="FieldCellSize">11</td> <td class="FieldCellDefault"></td> <td class="FieldCellOther">PRIMARY KEY, NOT NULL</td> <td class="FieldCellFK"></td> </tr> <tr> <td class="FieldCellName"><a name="random-foo">foo</a></td> <td class="FieldCellType">varchar</td> <td class="FieldCellSize">255</td> <td class="FieldCellDefault"></td> <td class="FieldCellOther">NOT NULL</td> <td class="FieldCellFK"></td> </tr> <tr> <td class="FieldCellName"><a name="random-updated">updated</a></td> <td class="FieldCellType">timestamp</td> <td class="FieldCellSize">0</td> <td class="FieldCellDefault"></td> <td class="FieldCellOther"></td> <td class="FieldCellFK"></td> </tr> Unless the nowrap producer arg is present, the HTML will be enclosed in a basic HTML header and footer. If the pretty producer arg is present, the generated HTML will be nicely spaced and human-readable. Otherwise, it will have very little insignificant whitespace and be generally smaller. AUTHORS
Ken Youens-Clark <kclark@cpan.org>, Darren Chamberlain <darren@cpan.org>. perl v5.14.2 2012-01-18 SQL::Translator::Producer::HTML(3pm)
Man Page