Fix missing true return lost during e5a62c46f
[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
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
10 use base qw/DBIx::Class::Storage::DBI::InterBase/;
11 use mro 'c3';
12
13 1;
14
15 =head1 NAME
16
17 DBIx::Class::Storage::DBI::Firebird - Driver for the Firebird RDBMS via
18 L<DBD::Firebird>
19
20 =head1 DESCRIPTION
21
22 This is an empty subclass of L<DBIx::Class::Storage::DBI::InterBase> for use
23 with L<DBD::Firebird>, see that driver for details.
24
25 =head1 AUTHOR
26
27 See L<DBIx::Class/AUTHOR> and L<DBIx::Class/CONTRIBUTORS>.
28
29 =head1 LICENSE
30
31 You may distribute this code under the same terms as Perl itself.
32