The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

dao-map-helper - Command line utility that simplifies the creation of Dao classes and the mapping between relational table and class. Kind of a low level ORM, where you can still use SQL and then map the result set to the class objects. Creates a skeleton of dao class with mapping to database table.

SYNOPSIS

dao-map-helper [options]

Options:

    --dsn=dsn         DSN(required)
    --user=user       User Name for logging into database.(required)
    --pwd=pwd         Password for logging into database.(required)
    --package=package Package Name.(required)

Example:

    dao-map-helper --dsn=dbi:mysql:mydb:localhost:3306 --user=root --pwd=pwd --package=MyApp

DESCRIPTION

dao-map-helper is a command-line interface to Dao::Map::Helper, which it uses to perform all the work of creating distributions.

CONFIGURATION

NA