X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FStorage%2FDBI%2FSybase%2FMicrosoft_SQL_Server.pm;h=7e1981693bede18291b260ad8c65ce592186d454;hb=1f4263ebe497f0a4a7dbde8850a8d1736946740d;hp=9a9410fc98f538f98248c5fce053adfe41d14208;hpb=9b3dabe0c35b6dafdfec559d594e95d5131e84b5;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Storage/DBI/Sybase/Microsoft_SQL_Server.pm b/lib/DBIx/Class/Storage/DBI/Sybase/Microsoft_SQL_Server.pm index 9a9410f..7e19816 100644 --- a/lib/DBIx/Class/Storage/DBI/Sybase/Microsoft_SQL_Server.pm +++ b/lib/DBIx/Class/Storage/DBI/Sybase/Microsoft_SQL_Server.pm @@ -5,40 +5,52 @@ use warnings; use base qw/ DBIx::Class::Storage::DBI::Sybase::Base - DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server + DBIx::Class::Storage::DBI::MSSQL DBIx::Class::Storage::DBI::NoBindVars /; use mro 'c3'; sub _rebless { my $self = shift; - $self->disable_sth_caching(1); + my $dbh = $self->_dbh; + + if (not $self->_placeholders_supported) { + bless $self, + 'DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server::NoBindVars'; + $self->_rebless; + } + +# LongReadLen doesn't work with MSSQL through DBD::Sybase, and the default is +# huge on some versions of SQL server and can cause memory problems, so we +# fix it up here. + my $text_size = eval { $self->_dbi_connect_info->[-1]->{LongReadLen} } || + 32768; # the DBD::Sybase default + + $dbh->do("set textsize $text_size"); } 1; =head1 NAME -DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server - Storage::DBI subclass for MSSQL via -DBD::Sybase +DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server - Support for Microsoft +SQL Server via DBD::Sybase =head1 SYNOPSIS This subclass supports MSSQL server connections via L. -=head1 CAVEATS - -This storage driver uses L as a base. -This means that bind variables will be interpolated (properly quoted of course) -into the SQL query itself, without using bind placeholders. +=head1 DESCRIPTION -More importantly this means that caching of prepared statements is explicitly -disabled, as the interpolation renders it useless. +This driver tries to determine whether your version of L and +supporting libraries (usually FreeTDS) support using placeholders, if not the +storage will be reblessed to +L. -The actual driver code for MSSQL is in -L. +The MSSQL specific functionality is provided by +L. -=head1 AUTHORS +=head1 AUTHOR See L.