X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FStorage%2FDBI%2FSybase.pm;h=8e65c9981199d731d0649e507d76a318d388701a;hb=234193451aa53051d0c675f7236ab8fc55f8b6b0;hp=5220dace8e444b47681cffda635e864893c07921;hpb=7e8cecc15add55966fd4df8810141d417d333ddd;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Storage/DBI/Sybase.pm b/lib/DBIx/Class/Storage/DBI/Sybase.pm index 5220dac..8e65c99 100644 --- a/lib/DBIx/Class/Storage/DBI/Sybase.pm +++ b/lib/DBIx/Class/Storage/DBI/Sybase.pm @@ -3,10 +3,49 @@ package DBIx::Class::Storage::DBI::Sybase; use strict; use warnings; -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/; +=head1 NAME + +DBIx::Class::Storage::DBI::Sybase - Storage::DBI subclass for Sybase + +=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. +=head1 DATES -But your queries will be cached. +See L to setup date formats +for L. -=head1 DATES +=head1 IMAGE AND TEXT COLUMNS -On connection C is set to C, e.g.: -C<2004-08-21T14:36:48.080Z> and C is set to C, e.g.: -C<08/13/1979 18:08:55.080>. +You need at least version C<1.09> of L for C column +support. -You will need the L module if you are going to use -L. +See L for a L +setting you need to work with C columns. =head1 AUTHORS