2nd Pass
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / CSV.pm
CommitLineData
ac50f57b 1package DBIx::Class::Storage::DBI::CSV;
2
7606fd62 3use base 'DBIx::Class::Storage::DBI::DBDFile';
ac50f57b 4use mro 'c3';
5use namespace::clean;
6
71;
8
9=head1 NAME
10
7606fd62 11DBIx::Class::Storage::DBI::CSV - Support for CSV files via DBD::CSV
ac50f57b 12
13=head1 SYNOPSIS
14
15This subclass supports CSV files via L<DBD::CSV>.
16
17=head1 DESCRIPTION
18
19This subclass is essentially just a stub that uses the super class
7606fd62 20L<DBIx::Class::Storage::DBI::DBDFile>. Patches welcome if
ac50f57b 21anything specific to this driver is required.
22
23=head1 AUTHOR
24
25See L<DBIx::Class/AUTHOR> and L<DBIx::Class/CONTRIBUTORS>.
26
27=head1 LICENSE
28
29You may distribute this code under the same terms as Perl itself.
30
31=cut