X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FStorage%2FDBI%2FSybase.pm;h=b320242f077d7cdf74d6655c52a1d10b7e293806;hb=f6de71113251acc964444e57bf3d38a23dc09ffd;hp=f8b5004b99817e436d443b3a3909c8b069ffa89c;hpb=3abafb11007307452da109622919fb9af0979d26;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Storage/DBI/Sybase.pm b/lib/DBIx/Class/Storage/DBI/Sybase.pm index f8b5004..b320242 100644 --- a/lib/DBIx/Class/Storage/DBI/Sybase.pm +++ b/lib/DBIx/Class/Storage/DBI/Sybase.pm @@ -3,10 +3,50 @@ package DBIx::Class::Storage::DBI::Sybase; use strict; use warnings; -use Class::C3; -use base qw/DBIx::Class::Storage::DBI/; - +use base qw/ + DBIx::Class::Storage::DBI::Sybase::Base + DBIx::Class::Storage::DBI +/; +use mro 'c3'; use Carp::Clan qw/^DBIx::Class/; +use List::Util (); + +__PACKAGE__->mk_group_accessors('simple' => + qw/_identity _blob_log_on_update/ +); + +=head1 NAME + +DBIx::Class::Storage::DBI::Sybase - Sybase support for DBIx::Class + +=head1 SYNOPSIS + +This subclass supports L for real Sybase databases. If you are +using an MSSQL database via L, your storage will be reblessed to +L. + +=head1 DESCRIPTION + +If your version of Sybase does not support placeholders, then your storage +will be reblessed to L. You can +also enable that driver explicitly, see the documentation for more details. + +With this driver there is unfortunately no way to get the C +without doing a C. +This is a bit too low, so on connection the clientside setting is set to C<256> +(see L.) You can override it to whatever setting you +like in the DSN. -But your queries will be cached. +See +L +for information on changing the setting on the server side. =head1 DATES See L to setup date formats for L. +=head1 IMAGE AND TEXT COLUMNS + +L compiled with FreeTDS will B work with C +columns. + +See L for a L +setting you need to work with C columns. + =head1 AUTHORS See L.