2nd Pass
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / CSV.pm
1 package DBIx::Class::Storage::DBI::CSV;
2
3 use base 'DBIx::Class::Storage::DBI::DBDFile';
4 use mro 'c3';
5 use namespace::clean;
6
7 1;
8
9 =head1 NAME
10
11 DBIx::Class::Storage::DBI::CSV - Support for CSV files via DBD::CSV
12
13 =head1 SYNOPSIS
14
15 This subclass supports CSV files via L<DBD::CSV>.
16
17 =head1 DESCRIPTION
18
19 This subclass is essentially just a stub that uses the super class
20 L<DBIx::Class::Storage::DBI::DBDFile>.  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