make the DB2/AS400 storage a subclass of DB2, do RNO detection, fix FetchFirst
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / ODBC / DB2_400_SQL.pm
1 package DBIx::Class::Storage::DBI::ODBC::DB2_400_SQL;
2
3 use strict;
4 use warnings;
5
6 use base qw/
7     DBIx::Class::Storage::DBI::DB2
8     DBIx::Class::Storage::DBI::ODBC
9 /;
10 use mro 'c3';
11
12 1;
13
14 =head1 NAME
15
16 DBIx::Class::Storage::DBI::ODBC::DB2_400_SQL - Support specific to DB2/400
17 over ODBC
18
19 =head1 DESCRIPTION
20
21 This is an empty subclass of L<DBIx::Class::Storage::DBI::DB2>.
22
23 =head1 AUTHOR
24
25 See L<DBIx::Class/AUTHOR> and L<DBIx::Class/CONTRIBUTORS>.
26
27 =head1 LICENSE
28
29 You may distribute this code under the same terms as Perl itself.
30
31 =cut
32 # vim:sts=2 sw=2: