Remove significance of some test envvars (and add a test to trip up downstream packagers)
[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
6f7a118e 13__PACKAGE__->datetime_parser_type(
14 'DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server::DateTime::Format'
15);
16
9b3dabe0 17sub _rebless {
18 my $self = shift;
9ae966b9 19 my $dbh = $self->_get_dbh;
7379eb67 20
918ab8ae 21 return if ref $self ne __PACKAGE__;
bbdda281 22 if (not $self->_use_typeless_placeholders) {
918ab8ae 23 require
24 DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server::NoBindVars;
7379eb67 25 bless $self,
26 'DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server::NoBindVars';
27 $self->_rebless;
28 }
d867eeda 29}
4966150b 30
f244a815 31sub _run_connection_actions {
d867eeda 32 my $self = shift;
4966150b 33
d867eeda 34 # LongReadLen doesn't work with MSSQL through DBD::Sybase, and the default is
35 # huge on some versions of SQL server and can cause memory problems, so we
95787afe 36 # fix it up here (see ::DBI::Sybase.pm)
d867eeda 37 $self->set_textsize;
f244a815 38
39 $self->next::method(@_);
37b17a93 40}
41
b90d7eba 42sub _dbh_begin_work {
43 my $self = shift;
44
45 $self->_get_dbh->do('BEGIN TRAN');
46}
47
48sub _dbh_commit {
49 my $self = shift;
6db5bdc6 50 my $dbh = $self->_dbh
51 or $self->throw_exception('cannot COMMIT on a disconnected handle');
52 $dbh->do('COMMIT');
b90d7eba 53}
54
55sub _dbh_rollback {
56 my $self = shift;
6db5bdc6 57 my $dbh = $self->_dbh
58 or $self->throw_exception('cannot ROLLBACK on a disconnected handle');
59 $dbh->do('ROLLBACK');
b90d7eba 60}
61
6d766626 62sub _get_server_version {
ff153e24 63 my $self = shift;
64
4282b6f8 65 my $product_version = $self->_get_dbh->selectrow_hashref('master.dbo.xp_msver ProductVersion');
ff153e24 66
89f85d82 67 if ((my $version = $product_version->{Character_Value}) =~ /^(\d+)\./) {
6d766626 68 return $version;
69 }
70 else {
71 $self->throw_exception(
72 "MSSQL Version Retrieval Failed, Your ProductVersion's Character_Value is missing or malformed!"
89f85d82 73 );
ff153e24 74 }
ff153e24 75}
76
fb95dc4d 77=head2 connect_call_datetime_setup
78
79Used as:
80
81 on_connect_call => 'datetime_setup'
82
83In L<connect_info|DBIx::Class::Storage::DBI/connect_info> to set:
84
85 $dbh->syb_date_fmt('ISO_strict'); # output fmt: 2004-08-21T14:36:48.080Z
86
87On connection for use with L<DBIx::Class::InflateColumn::DateTime>
88
89This works for both C<DATETIME> and C<SMALLDATETIME> columns, although
90C<SMALLDATETIME> columns only have minute precision.
91
92=cut
93
94{
95 my $old_dbd_warned = 0;
96
97 sub connect_call_datetime_setup {
98 my $self = shift;
99 my $dbh = $self->_get_dbh;
100
101 if ($dbh->can('syb_date_fmt')) {
102 # amazingly, this works with FreeTDS
103 $dbh->syb_date_fmt('ISO_strict');
104 } elsif (not $old_dbd_warned) {
105 carp "Your DBD::Sybase is too old to support ".
106 "DBIx::Class::InflateColumn::DateTime, please upgrade!";
107 $old_dbd_warned = 1;
108 }
109 }
110}
111
fb95dc4d 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