| Class-DBI-Loader-DB2 documentation | view source | Contained in the Class-DBI-Loader-DB2 distribution. |
Class::DBI::Loader::DB2 - Class::DBI::Loader DB2 implementation.
use Class::DBI::Loader;
# $loader is a Class::DBI::Loader::DB2
my $loader = Class::DBI::Loader->new(
dsn => "dbi:DB2:dbname",
user => "root",
password => "",
namespace => "Data",
);
my $class = $loader->find_class('film'); # $class => Data::Film
my $obj = $class->retrieve(1);
please see Class::DBI::Loader
Mark Ferris <mark.ferris@geac.com>
Copyright (C) 2004 Mark Ferris. All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Class-DBI-Loader-DB2 documentation | view source | Contained in the Class-DBI-Loader-DB2 distribution. |