cleaned up ODBC crap and added docs
[dbsrgits/DBIx-Class-Schema-Loader.git] / lib / DBIx / Class / Schema / Loader / DBI / ODBC / Microsoft_SQL_Server.pm
1 package DBIx::Class::Schema::Loader::DBI::ODBC::Microsoft_SQL_Server;
2
3 use strict;
4 use warnings;
5 use base 'DBIx::Class::Schema::Loader::DBI::MSSQL';
6 use Carp::Clan qw/^DBIx::Class/;
7 use Class::C3;
8
9 our $VERSION = '0.04999_06';
10
11 =head1 NAME
12
13 DBIx::Class::Schema::Loader::DBI::ODBC::Microsoft_SQL_Server - ODBC wrapper for
14 L<DBIx::Class::Schema::Loader::DBI::MSSQL>
15
16 =head1 DESCRIPTION
17
18 Proxy for L<DBIx::Class::Schema::Loader::DBI::MSSQL> when using L<DBD::ODBC>.
19
20 See L<DBIx::Class::Schema::Loader::Base> for usage information.
21
22 =cut
23
24 sub _tables_list { 
25     my $self = shift;
26
27     return $self->next::method(undef, undef);
28 }
29
30 =head1 SEE ALSO
31
32 L<DBIx::Class::Schema::Loader::DBI::MSSQL>,
33 L<DBIx::Class::Schema::Loader>, L<DBIx::Class::Schema::Loader::Base>,
34 L<DBIx::Class::Schema::Loader::DBI>
35
36 =head1 AUTHOR
37
38 Rafael Kitover C<rkitover@cpan.org>
39
40 =cut
41
42 1;