Commit | Line | Data |
f7e5fd18 |
1 | package DBIx::Class::Storage::DBI::Firebird; |
2 | |
3 | use strict; |
4 | use 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 |
10 | use base qw/DBIx::Class::Storage::DBI::InterBase/; |
e46df41a |
11 | |
f7e5fd18 |
12 | use mro 'c3'; |
13 | |
14 | =head1 NAME |
15 | |
16 | DBIx::Class::Storage::DBI::Firebird - Driver for the Firebird RDBMS via |
17 | L<DBD::Firebird> |
18 | |
19 | =head1 DESCRIPTION |
20 | |
21 | This is an empty subclass of L<DBIx::Class::Storage::DBI::InterBase> for use |
22 | with L<DBD::Firebird>, see that driver for details. |
23 | |
24 | =cut |
25 | |
26 | 1; |
27 | |
28 | =head1 AUTHOR |
29 | |
30 | See L<DBIx::Class/AUTHOR> and L<DBIx::Class/CONTRIBUTORS>. |
31 | |
32 | =head1 LICENSE |
33 | |
34 | You may distribute this code under the same terms as Perl itself. |
35 | |
36 | =cut |
37 | # vim:sts=2 sw=2: |