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