• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Class/DBI/H08-Oct-2003-9629

t/H08-Oct-2003-6245

Build.PLH A D08-Oct-2003309 1612

ChangesH A D08-Oct-2003192 75

MANIFESTH A D08-Oct-2003199 1312

MANIFEST.SKIPH A D09-Jun-200346 87

META.ymlH A D08-Oct-2003309 1716

Makefile.PLH A D08-Oct-2003900 2920

READMEH A D08-Oct-2003908 5730

README

1README for Class::DBI::BaseDSN 1.22
2
3=head1 NAME
4
5Class::DBI::BaseDSN - DSN sensitive base class
6
7=head1 SYNOPSIS
8
9  package My::DBI;
10  use base 'Class::DBI::BaseDSN'; # we'll decide later what our real
11                                   # parent class will be
12  __PACKAGE__->set_db( Main => $ENV{TESTING} ? @test_dsn : @real_dsn );
13
14
15
16=head1 DEPENDENCIES
17
18This module has external dependencies on the following modules:
19
20 Class::DBI
21 Test::More
22
23=head1 INSTALLATION
24
25 perl Build.PL
26 perl Build test
27
28and if all goes well
29
30 perl Build install
31
32=head1 HISTORY
33
34What changed over the last 3 revisions
35
36=over
37
38=item 1.22	Wednesday October 8th, 2003
39
40	Check that it's the thing we were importing that went boom,
41	not something *it* was importing. (rt.cpan.org #3982)
42
43
44=item 1.21	9th June, 2003
45
46	Initial CPAN release
47=back
48
49=head1 AUTHOR
50
51Richard Clamp <richardc@unixbeard.net>
52
53=head1 SEE ALSO
54
55L<Class::DBI>
56
57