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

NAME

Class::DBI::Loader::Oracle - Class::DBI::Loader Oracle Implementation.

SYNOPSIS

  use Class::DBI::Loader;

  # $loader is a Class::DBI::Loader::Oracle
  my $loader = Class::DBI::Loader->new(
    dsn       => $dsn,      # "dbi:Oracle:", "dbi:Oracle:DB", ...
    user      => $user,     # "user", "user@DB", "user/pass", ...
    password  => $password, # "pass", "", ...
    namespace => "Data",
  );
  my $class = $loader->find_class('film'); # $class => Data::Film
  my $obj = $class->retrieve(1);

DESCRIPTION

See Class::DBI::Loader, Class::DBI::Loader::Generic.

SEE ALSO

Class::DBI::Loader, Class::DBI::Loader::Generic

TODO

This module needs a new maintainer, because I no longer use Class::DBI and have no further interest in maintaining this module. And yes, this includes the RT wishlist request for relationships support.

BUGS

Please report any bugs or feature requests to bug-class-dbi-loader-oracle@rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Class-DBI-Loader-Oracle. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

ACKNOWLEDGEMENTS

Special thanks to Frank Carnovale and Ian VanDerPoel for sharing their code, upon which this module is based. Thanks also to Jay Strauss, Johan Lindstrom and Dan Sully for their helpful comments.

AUTHOR

David Naughton, <naughton@cpan.org>

COPYRIGHT & LICENSE

Copyright 2005 David Naughton, All Rights Reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.