SQL::Translator::Filter::DefaultExtra - Set default extra data values for schema


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

Index


NAME

Top

SQL::Translator::Filter::DefaultExtra - Set default extra data values for schema objects.

SYNOPSIS

Top

  use SQL::Translator;

  my $sqlt = SQL::Translator->new(
      from => 'MySQL',
      to   => 'MySQL',
      filters => [
        DefaultExtra => {
            # XXX - These should really be ordered

            # Default widget for fields to basic text edit.
            'field.widget' => 'text',
            # idea:
            'field(data_type=BIT).widget' => 'yesno',

            # Default label (human formated name) for fields and tables
            'field.label'  => '=ucfirst($name)',
            'table.label'  => '=ucfirst($name)',
        }, 
      ],
  ) || die "SQLFairy error : ".SQL::Translator->error;
  my $sql = $sqlt->translate || die "SQLFairy error : ".$sqlt->error;

DESCRIPTION

Top

Maybe I'm trying to do too much in one go. Args set a match and then an update, if you want to set lots of things, use lots of filters!

SEE ALSO

Top

perl(1), SQL::Translator

BUGS

Top

TODO

Top

AUTHOR

Top


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