support for DBD::Firebird
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / Firebird.pm
1 package DBIx::Class::Storage::DBI::Firebird;
2
3 use strict;
4 use warnings;
5 use base qw/DBIx::Class::Storage::DBI::InterBase/;
6 use mro 'c3';
7
8 =head1 NAME
9
10 DBIx::Class::Storage::DBI::Firebird - Driver for the Firebird RDBMS via
11 L<DBD::Firebird>
12
13 =head1 DESCRIPTION
14
15 This is an empty subclass of L<DBIx::Class::Storage::DBI::InterBase> for use
16 with L<DBD::Firebird>, see that driver for details.
17
18 =cut
19
20 1;
21
22 =head1 AUTHOR
23
24 See L<DBIx::Class/AUTHOR> and L<DBIx::Class/CONTRIBUTORS>.
25
26 =head1 LICENSE
27
28 You may distribute this code under the same terms as Perl itself.
29
30 =cut
31 # vim:sts=2 sw=2: