Then simply edit Foo.pm as needed and include it in your code.
+=head1 CREATING A DATA DUMPER SCRIPT
+
+The Dumper producer creates a Perl script that can select the fields
+in each table and then create "INSERT" statements for each record in
+the database similar to the output generated by MySQL's "mysqldump"
+program:
+
+ $ sqlt -f YAML -t Dumper --dumper-db-user guest \
+ > --dumper-db-pass p4ssw0rd --dumper-dsn dbi:mysql:FOO \
+ > foo.yaml > foo-dumper.pl
+
+And then execute the resulting script to dump the data:
+
+ $ chmod +x foo-dumper.pl
+ $ ./foo-dumper.pl > foo-data.sql
+
+The dumper script also has a number of options available. Execute the
+script with the "--help" flag to read about them.
+
=head1 DOCUMENTING WITH SQL::TRANSLATOR
SQLFairy offers two producers to help document schemas: