Introduce GOVERNANCE document and empty RESOLUTIONS file.
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / Firebird.pm
CommitLineData
f7e5fd18 1package DBIx::Class::Storage::DBI::Firebird;
2
3use strict;
4use warnings;
e46df41a 5
6# Because DBD::Firebird is more or less a copy of
7# DBD::Interbase, inherit all the workarounds contained
8# in ::Storage::DBI::InterBase as opposed to inheriting
9# directly from ::Storage::DBI::Firebird::Common
f7e5fd18 10use base qw/DBIx::Class::Storage::DBI::InterBase/;
11use mro 'c3';
12
f3d7b702 131;
14
f7e5fd18 15=head1 NAME
16
17DBIx::Class::Storage::DBI::Firebird - Driver for the Firebird RDBMS via
18L<DBD::Firebird>
19
20=head1 DESCRIPTION
21
22This is an empty subclass of L<DBIx::Class::Storage::DBI::InterBase> for use
23with L<DBD::Firebird>, see that driver for details.
24
a2bd3796 25=head1 FURTHER QUESTIONS?
f7e5fd18 26
a2bd3796 27Check the list of L<additional DBIC resources|DBIx::Class/GETTING HELP/SUPPORT>.
f7e5fd18 28
a2bd3796 29=head1 COPYRIGHT AND LICENSE
f7e5fd18 30
a2bd3796 31This module is free software L<copyright|DBIx::Class/COPYRIGHT AND LICENSE>
32by the L<DBIx::Class (DBIC) authors|DBIx::Class/AUTHORS>. You can
33redistribute it and/or modify it under the same terms as the
34L<DBIx::Class library|DBIx::Class/COPYRIGHT AND LICENSE>.