Release 0.07047
[dbsrgits/DBIx-Class-Schema-Loader.git] / lib / DBIx / Class / Schema / Loader / DBI / Firebird.pm
1 package DBIx::Class::Schema::Loader::DBI::Firebird;
2
3 use strict;
4 use warnings;
5 use base qw/DBIx::Class::Schema::Loader::DBI::InterBase/;
6 use mro 'c3';
7
8 our $VERSION = '0.07047';
9
10 =head1 NAME
11
12 DBIx::Class::Schema::Loader::DBI::Firebird - DBIx::Class::Schema::Loader::DBI
13 L<DBD::Firebird> subclass
14
15 =head1 DESCRIPTION
16
17 This is an empty subclass of L<DBIx::Class::Schema::Loader::DBI::InterBase> for
18 use with L<DBD::Firebird>, see that driver for details.
19
20 See L<DBIx::Class::Schema::Loader> and L<DBIx::Class::Schema::Loader::Base> for
21 general Schema::Loader information.
22
23 =head1 SEE ALSO
24
25 L<DBIx::Class::Schema::Loader>, L<DBIx::Class::Schema::Loader::Base>,
26 L<DBIx::Class::Schema::Loader::DBI>, L<DBIx::Class::Schema::Loader::DBI::InterBase>
27
28 =head1 AUTHORS
29
30 See L<DBIx::Class::Schema::Loader/AUTHORS>.
31
32 =head1 LICENSE
33
34 This library is free software; you can redistribute it and/or modify it under
35 the same terms as Perl itself.
36
37 =cut
38
39 1;
40 # vim:et sw=4 sts=4 tw=0: