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

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);

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

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

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.

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.

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.

David Naughton, <naughton@cpan.org>

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.