logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SQL::Translator::Producer::POD - POD producer for SQL::Translator

Author

       Ken Youens-Clark <kclark@cpan.org>.

   CONTRIBUTORS
       Jonathan Yu <frequency@cpan.org>

Description

       Creates a POD description of each table, field, index, and constraint.  A good starting point for text
       documentation of a schema.  You can easily convert the output to HTML or text using "perldoc" or other
       interesting formats using Pod::POM or Template::Toolkit's POD plugin.

Name

       SQL::Translator::Producer::POD - POD producer for SQL::Translator

See Also

       perldoc, perlpod, Pod::POM, Template::Manual::Plugins.

perl v5.40.0                                       2024-11-23                SQL::Translator::Producer::POD(3pm)

Synopsis

         use SQL::Translator;

         my $t = SQL::Translator->new( parser => '...', producer => 'POD', '...' );
         print $t->translate;

See Also