Refactor the version handling
[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 sub _get_server_version {
59   my $self = shift;
60
61   my $product_version = $self->_get_dbh->selectrow_hashref('xp_msver ProductVersion');
62
63   if ((my $version = $data->{Character_Value}) =~ /^(\d+)\./) {
64     return $version;
65   }
66   else {
67     $self->throw_exception(
68       "MSSQL Version Retrieval Failed, Your ProductVersion's Character_Value is missing or malformed!"
69     });
70   }
71 }
72
73 1;
74
75 =head1 NAME
76
77 DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server - Support for Microsoft
78 SQL Server via DBD::Sybase
79
80 =head1 SYNOPSIS
81
82 This subclass supports MSSQL server connections via L<DBD::Sybase>.
83
84 =head1 DESCRIPTION
85
86 This driver tries to determine whether your version of L<DBD::Sybase> and
87 supporting libraries (usually FreeTDS) support using placeholders, if not the
88 storage will be reblessed to
89 L<DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server::NoBindVars>.
90
91 The MSSQL specific functionality is provided by
92 L<DBIx::Class::Storage::DBI::MSSQL>.
93
94 =head1 AUTHOR
95
96 See L<DBIx::Class/CONTRIBUTORS>.
97
98 =head1 LICENSE
99
100 You may distribute this code under the same terms as Perl itself.
101
102 =cut