DBIx::Class::Storage::DBI::ODBC::SQL_Anywhere - Driver for using Sybase SQL


DBIx-Class documentation Contained in the DBIx-Class distribution.

Index


Code Index:

NAME

Top

DBIx::Class::Storage::DBI::ODBC::SQL_Anywhere - Driver for using Sybase SQL Anywhere through ODBC

SYNOPSIS

Top

All functionality is provided by DBIx::Class::Storage::DBI::SQLAnywhere, see that module for details.

CAVEATS

Top

uniqueidentifierstr data type

If you use the uniqueidentifierstr type with this driver, your queries may fail with:

  Data truncated (SQL-01004)

WORKAROUND: use the uniqueidentifier type instead, it is more efficient anyway.

AUTHOR

Top

See AUTHOR in DBIx::Class and CONTRIBUTORS in DBIx::Class.

LICENSE

Top

You may distribute this code under the same terms as Perl itself.


DBIx-Class documentation Contained in the DBIx-Class distribution.

package DBIx::Class::Storage::DBI::ODBC::SQL_Anywhere;

use strict;
use warnings;
use base qw/DBIx::Class::Storage::DBI::SQLAnywhere/;
use mro 'c3';

1;