Trailing WS crusade - got to save them bits
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / ODBC / SQL_Anywhere.pm
1 package DBIx::Class::Storage::DBI::ODBC::SQL_Anywhere;
2
3 use strict;
4 use warnings;
5 use base qw/DBIx::Class::Storage::DBI::SQLAnywhere/;
6 use mro 'c3';
7
8 1;
9
10 =head1 NAME
11
12 DBIx::Class::Storage::DBI::ODBC::SQL_Anywhere - Driver for using Sybase SQL
13 Anywhere through ODBC
14
15 =head1 SYNOPSIS
16
17 All functionality is provided by L<DBIx::Class::Storage::DBI::SQLAnywhere>, see
18 that module for details.
19
20 =head1 CAVEATS
21
22 =head2 uniqueidentifierstr data type
23
24 If you use the C<uniqueidentifierstr> type with this driver, your queries may
25 fail with:
26
27   Data truncated (SQL-01004)
28
29 B<WORKAROUND:> use the C<uniqueidentifier> type instead, it is more efficient
30 anyway.
31
32 =head1 AUTHOR
33
34 See L<DBIx::Class/AUTHOR> and L<DBIx::Class/CONTRIBUTORS>.
35
36 =head1 LICENSE
37
38 You may distribute this code under the same terms as Perl itself.
39
40 =cut