SQL::Translator::Producer - describes how to write a producer


SQL-Translator documentation  | view source Contained in the SQL-Translator distribution.

Index


NAME

Top

SQL::Translator::Producer - describes how to write a producer

DESCRIPTION

Top

Producer modules designed to be used with SQL::Translator need to implement a single function, called produce. produce will be called with the SQL::Translator object from which it is expected to retrieve the SQL::Translator::Schema object which has been populated by the parser. It is expected to return a string.

METHODS

Top

produce
create_table($table)
create_field($field)
create_view($view)
create_index($index)
create_constraint($constraint)
create_trigger($trigger)
alter_field($from_field, $to_field)
add_field($table, $new_field)
drop_field($table, $old_field)

AUTHORS

Top

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

SEE ALSO

Top

perl(1), SQL::Translator, SQL::Translator::Schema.


SQL-Translator documentation  | view source Contained in the SQL-Translator distribution.