Option to disable the charging of the setup fee while a package is suspended.
[freeside.git] / install / 5.005 / DBD-Pg-1.22-fixvercmp / t / lib / App / Info / RDBMS.pm
1 package App::Info::RDBMS;
2
3 # $Id: RDBMS.pm,v 1.1 2004-04-29 09:21:28 ivan Exp $
4
5 use strict;
6 use App::Info;
7 use vars qw(@ISA $VERSION);
8 @ISA = qw(App::Info);
9 $VERSION = '0.22';
10
11 1;
12 __END__
13
14 =head1 NAME
15
16 App::Info::RDBMS - Information about databases on a system
17
18 =head1 DESCRIPTION
19
20 This class is an abstract base class for App::Info subclasses that provide
21 information about relational databases. Its subclasses are required to
22 implement its interface. See L<App::Info|App::Info> for a complete description
23 and L<App::Info::RDBMS::PostgreSQL|App::Info::RDBMS::PostgreSQL> for an example
24 implementation.
25
26 =head1 INTERFACE
27
28 Currently, App::Info::RDBMS adds no more methods than those from its parent
29 class, App::Info.
30
31 =head1 BUGS
32
33 Report all bugs via the CPAN Request Tracker at
34 L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=App-Info>.
35
36 =head1 AUTHOR
37
38 David Wheeler <L<david@wheeler.net|"david@wheeler.net">>
39
40 =head1 SEE ALSO
41
42 L<App::Info|App::Info>,
43 L<App::Info::RDBMS::PostgreSQL|App::Info::RDBMS::PostgreSQL>
44
45 =head1 COPYRIGHT AND LICENSE
46
47 Copyright (c) 2002, David Wheeler. All Rights Reserved.
48
49 This module is free software; you can redistribute it and/or modify it under the
50 same terms as Perl itself.
51
52 =cut
53
54
55