Switch the main dev branch back to 'master'
[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
a2bd3796 35=head1 FURTHER QUESTIONS?
cf7b6654 36
a2bd3796 37Check the list of L<additional DBIC resources|DBIx::Class/GETTING HELP/SUPPORT>.
cf7b6654 38
a2bd3796 39=head1 COPYRIGHT AND LICENSE
cf7b6654 40
a2bd3796 41This module is free software L<copyright|DBIx::Class/COPYRIGHT AND LICENSE>
42by the L<DBIx::Class (DBIC) authors|DBIx::Class/AUTHORS>. You can
43redistribute it and/or modify it under the same terms as the
44L<DBIx::Class library|DBIx::Class/COPYRIGHT AND LICENSE>.
cf7b6654 45