Commit | Line | Data |
8793567f |
1 | package DBIx::Class::Schema::Loader::DBI::ODBC::SQL_Anywhere; |
2 | |
3 | use strict; |
4 | use warnings; |
5 | use base qw/ |
8793567f |
6 | DBIx::Class::Schema::Loader::DBI::SQLAnywhere |
7 | /; |
8 | use Carp::Clan qw/^DBIx::Class/; |
942bd5e0 |
9 | use mro 'c3'; |
8793567f |
10 | |
e94ccbea |
11 | our $VERSION = '0.07006'; |
8793567f |
12 | |
13 | =head1 NAME |
14 | |
15 | DBIx::Class::Schema::Loader::DBI::ODBC::SQL_Anywhere - ODBC wrapper for |
16 | L<DBIx::Class::Schema::Loader::DBI::SQLAnywhere> |
17 | |
18 | =head1 DESCRIPTION |
19 | |
20 | Proxy for L<DBIx::Class::Schema::Loader::DBI::SQLAnywhere> when using L<DBD::ODBC>. |
21 | |
22 | See L<DBIx::Class::Schema::Loader::Base> for usage information. |
23 | |
24 | =head1 SEE ALSO |
25 | |
26 | L<DBIx::Class::Schema::Loader::DBI::SQLAnywhere>, |
27 | L<DBIx::Class::Schema::Loader>, L<DBIx::Class::Schema::Loader::Base>, |
28 | L<DBIx::Class::Schema::Loader::DBI> |
29 | |
30 | =head1 AUTHOR |
31 | |
32 | See L<DBIx::Class::Schema::Loader/AUTHOR> and L<DBIx::Class::Schema::Loader/CONTRIBUTORS>. |
33 | |
34 | =head1 LICENSE |
35 | |
36 | This library is free software; you can redistribute it and/or modify it under |
37 | the same terms as Perl itself. |
38 | |
39 | =cut |
40 | |
41 | 1; |