X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FStorage%2FDBI%2FODBC%2FSQL_Anywhere.pm;h=0a6bd1aba4d27b62b64be5d36ff7cbd6a927483d;hb=863b05398ad6c8988b7ede26d49b481e6b3324f9;hp=15c801c4a4d7d586ab601a98baf703a17fb475d1;hpb=cf7b66549af1fcd500a2741e5795626b0d809317;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Storage/DBI/ODBC/SQL_Anywhere.pm b/lib/DBIx/Class/Storage/DBI/ODBC/SQL_Anywhere.pm index 15c801c..0a6bd1a 100644 --- a/lib/DBIx/Class/Storage/DBI/ODBC/SQL_Anywhere.pm +++ b/lib/DBIx/Class/Storage/DBI/ODBC/SQL_Anywhere.pm @@ -2,7 +2,10 @@ package DBIx::Class::Storage::DBI::ODBC::SQL_Anywhere; use strict; use warnings; -use base qw/DBIx::Class::Storage::DBI::SQLAnywhere/; +use base qw/ + DBIx::Class::Storage::DBI::ODBC + DBIx::Class::Storage::DBI::SQLAnywhere +/; use mro 'c3'; 1; @@ -17,6 +20,18 @@ Anywhere through ODBC All functionality is provided by L, see that module for details. +=head1 CAVEATS + +=head2 uniqueidentifierstr data type + +If you use the C type with this driver, your queries may +fail with: + + Data truncated (SQL-01004) + +B use the C type instead, it is more efficient +anyway. + =head1 AUTHOR See L and L.