add namespace::clean as regular dep
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / Sybase / Microsoft_SQL_Server.pm
CommitLineData
98464041 1package DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server;
2
3use strict;
4use warnings;
2ad62d97 5
528accab 6use base qw/
95787afe 7 DBIx::Class::Storage::DBI::Sybase
5a77aa8b 8 DBIx::Class::Storage::DBI::MSSQL
528accab 9/;
2ad62d97 10use mro 'c3';
fb95dc4d 11use Carp::Clan qw/^DBIx::Class/;
98464041 12
9b3dabe0 13sub _rebless {
14 my $self = shift;
9ae966b9 15 my $dbh = $self->_get_dbh;
7379eb67 16
918ab8ae 17 return if ref $self ne __PACKAGE__;
18
e33b954c 19 if (not $self->_typeless_placeholders_supported) {
918ab8ae 20 require
21 DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server::NoBindVars;
7379eb67 22 bless $self,
23 'DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server::NoBindVars';
24 $self->_rebless;
25 }
d867eeda 26}
4966150b 27
f244a815 28sub _run_connection_actions {
d867eeda 29 my $self = shift;
4966150b 30
d867eeda 31 # LongReadLen doesn't work with MSSQL through DBD::Sybase, and the default is
32 # huge on some versions of SQL server and can cause memory problems, so we
95787afe 33 # fix it up here (see ::DBI::Sybase.pm)
d867eeda 34 $self->set_textsize;
f244a815 35
36 $self->next::method(@_);
37b17a93 37}
38
b90d7eba 39sub _dbh_begin_work {
40 my $self = shift;
41
42 $self->_get_dbh->do('BEGIN TRAN');
43}
44
45sub _dbh_commit {
46 my $self = shift;
6db5bdc6 47 my $dbh = $self->_dbh
48 or $self->throw_exception('cannot COMMIT on a disconnected handle');
49 $dbh->do('COMMIT');
b90d7eba 50}
51
52sub _dbh_rollback {
53 my $self = shift;
6db5bdc6 54 my $dbh = $self->_dbh
55 or $self->throw_exception('cannot ROLLBACK on a disconnected handle');
56 $dbh->do('ROLLBACK');
b90d7eba 57}
58
6d766626 59sub _get_server_version {
ff153e24 60 my $self = shift;
61
ff153e24 62 my $product_version = $self->_get_dbh->selectrow_hashref('xp_msver ProductVersion');
63
89f85d82 64 if ((my $version = $product_version->{Character_Value}) =~ /^(\d+)\./) {
6d766626 65 return $version;
66 }
67 else {
68 $self->throw_exception(
69 "MSSQL Version Retrieval Failed, Your ProductVersion's Character_Value is missing or malformed!"
89f85d82 70 );
ff153e24 71 }
ff153e24 72}
73
fb95dc4d 74=head2 connect_call_datetime_setup
75
76Used as:
77
78 on_connect_call => 'datetime_setup'
79
80In L<connect_info|DBIx::Class::Storage::DBI/connect_info> to set:
81
82 $dbh->syb_date_fmt('ISO_strict'); # output fmt: 2004-08-21T14:36:48.080Z
83
84On connection for use with L<DBIx::Class::InflateColumn::DateTime>
85
86This works for both C<DATETIME> and C<SMALLDATETIME> columns, although
87C<SMALLDATETIME> columns only have minute precision.
88
89=cut
90
91{
92 my $old_dbd_warned = 0;
93
94 sub connect_call_datetime_setup {
95 my $self = shift;
96 my $dbh = $self->_get_dbh;
97
98 if ($dbh->can('syb_date_fmt')) {
99 # amazingly, this works with FreeTDS
100 $dbh->syb_date_fmt('ISO_strict');
101 } elsif (not $old_dbd_warned) {
102 carp "Your DBD::Sybase is too old to support ".
103 "DBIx::Class::InflateColumn::DateTime, please upgrade!";
104 $old_dbd_warned = 1;
105 }
106 }
107}
108
109sub datetime_parser_type {
110 'DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server::DateTime::Format'
111}
112
113package # hide from PAUSE
114 DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server::DateTime::Format;
115
116my $datetime_parse_format = '%Y-%m-%dT%H:%M:%S.%3NZ';
117my $datetime_format_format = '%Y-%m-%d %H:%M:%S.%3N'; # %F %T
118
119my ($datetime_parser, $datetime_formatter);
120
121sub parse_datetime {
122 shift;
123 require DateTime::Format::Strptime;
124 $datetime_parser ||= DateTime::Format::Strptime->new(
125 pattern => $datetime_parse_format,
126 on_error => 'croak',
127 );
128 return $datetime_parser->parse_datetime(shift);
129}
130
131sub format_datetime {
132 shift;
133 require DateTime::Format::Strptime;
134 $datetime_formatter ||= DateTime::Format::Strptime->new(
135 pattern => $datetime_format_format,
136 on_error => 'croak',
137 );
138 return $datetime_formatter->format_datetime(shift);
139}
140
98464041 1411;
142
143=head1 NAME
144
5a77aa8b 145DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server - Support for Microsoft
146SQL Server via DBD::Sybase
98464041 147
148=head1 SYNOPSIS
149
5608593e 150This subclass supports MSSQL server connections via L<DBD::Sybase>.
98464041 151
7379eb67 152=head1 DESCRIPTION
d4483998 153
7379eb67 154This driver tries to determine whether your version of L<DBD::Sybase> and
155supporting libraries (usually FreeTDS) support using placeholders, if not the
156storage will be reblessed to
157L<DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server::NoBindVars>.
98464041 158
7379eb67 159The MSSQL specific functionality is provided by
160L<DBIx::Class::Storage::DBI::MSSQL>.
7e8cecc1 161
5a77aa8b 162=head1 AUTHOR
98464041 163
b7505130 164See L<DBIx::Class/CONTRIBUTORS>.
98464041 165
166=head1 LICENSE
167
168You may distribute this code under the same terms as Perl itself.
169
170=cut