fix _rebless into sybase/mssql/nobindvars
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / Sybase / Microsoft_SQL_Server.pm
1 package DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server;
2
3 use strict;
4 use warnings;
5
6 use base qw/
7   DBIx::Class::Storage::DBI::Sybase
8   DBIx::Class::Storage::DBI::MSSQL
9 /;
10 use mro 'c3';
11
12 sub _rebless {
13   my $self = shift;
14   my $dbh  = $self->_get_dbh;
15
16   return if ref $self ne __PACKAGE__;
17
18   if (not $self->_typeless_placeholders_supported) {
19     require
20       DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server::NoBindVars;
21     bless $self,
22       'DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server::NoBindVars';
23     $self->_rebless;
24   }
25 }
26
27 sub _run_connection_actions {
28   my $self = shift;
29
30   # LongReadLen doesn't work with MSSQL through DBD::Sybase, and the default is
31   # huge on some versions of SQL server and can cause memory problems, so we
32   # fix it up here (see ::DBI::Sybase.pm)
33   $self->set_textsize;
34
35   $self->next::method(@_);
36 }
37
38 sub _dbh_begin_work {
39   my $self = shift;
40
41   $self->_get_dbh->do('BEGIN TRAN');
42 }
43
44 sub _dbh_commit {
45   my $self = shift;
46   my $dbh  = $self->_dbh
47     or $self->throw_exception('cannot COMMIT on a disconnected handle');
48   $dbh->do('COMMIT');
49 }
50
51 sub _dbh_rollback {
52   my $self = shift;
53   my $dbh  = $self->_dbh
54     or $self->throw_exception('cannot ROLLBACK on a disconnected handle');
55   $dbh->do('ROLLBACK');
56 }
57
58 1;
59
60 =head1 NAME
61
62 DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server - Support for Microsoft
63 SQL Server via DBD::Sybase
64
65 =head1 SYNOPSIS
66
67 This subclass supports MSSQL server connections via L<DBD::Sybase>.
68
69 =head1 DESCRIPTION
70
71 This driver tries to determine whether your version of L<DBD::Sybase> and
72 supporting libraries (usually FreeTDS) support using placeholders, if not the
73 storage will be reblessed to
74 L<DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server::NoBindVars>.
75
76 The MSSQL specific functionality is provided by
77 L<DBIx::Class::Storage::DBI::MSSQL>.
78
79 =head1 AUTHOR
80
81 See L<DBIx::Class/CONTRIBUTORS>.
82
83 =head1 LICENSE
84
85 You may distribute this code under the same terms as Perl itself.
86
87 =cut