Fey::Loader - Load your schema definition from a DBMS


Fey-Loader documentation  | view source Contained in the Fey-Loader distribution.

Index


NAME

Top

Fey::Loader - Load your schema definition from a DBMS

VERSION

Top

version 0.12

SYNOPSIS

Top

  my $loader = Fey::Loader->new( dbh => $dbh );

  my $loader = Fey::Loader->new(
      dbh          => $dbh,
      schema_class => '...',
      table_class  => '...',
  );

  my $schema = $loader->make_schema();

DESCRIPTION

Top

Fey::Loader takes a DBI handle and uses it to construct a set of Fey objects representing that schema. It will attempt to use an appropriate DBMS subclass if one exists, but will fall back to using a generic loader otherwise.

The generic loader simply uses the various schema information methods specified by DBI. This in turn depends on these methods being implemented by the driver.

See the Fey::Loader::DBI class for more details on what parameters the new() method accepts.

METHODS

Top

This class provides the following methods:

Fey::Loader->new( dbh => $dbh )

Given a connected DBI handle, this method returns a new loader. If an appropriate subclass exists, it will be loaded and used. Otherwise, it will warn and fall back to using Fey::Loader::DBI.

BUGS

Top

Please report any bugs or feature requests to bug-fey-loader@rt.cpan.org, or through the web interface at http://rt.cpan.org. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

AUTHOR

Top

Dave Rolsky <autarch@urth.org>

COPYRIGHT AND LICENSE

Top


Fey-Loader documentation  | view source Contained in the Fey-Loader distribution.