Add support for SQL::Statement-based DBDs
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / SNMP.pm
1 package DBIx::Class::Storage::DBI::SNMP;
2
3 use base 'DBIx::Class::Storage::DBI::SQL::Statement';
4 use mro 'c3';
5 use namespace::clean;
6
7 1;
8
9 =head1 NAME
10
11 DBIx::Class::Storage::DBI::SNMP - Support for SNMP data via DBD::SNMP
12
13 =head1 SYNOPSIS
14
15 This subclass supports SNMP data via L<DBD::SNMP>.
16
17 =head1 DESCRIPTION
18
19 This subclass is essentially just a stub that uses the super class
20 L<DBIx::Class::Storage::DBI::SQL::Statement>.  Patches welcome if
21 anything specific to this driver is required.
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