Added AmbiguousGlob.pm for silly servers like mssql and mysql. See docs for more...
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / MSSQL.pm
1 package DBIx::Class::Storage::DBI::MSSQL;
2
3 use strict;
4 use warnings;
5
6 use base qw/DBIx::Class::Storage::DBI::AmbiguousGlob DBIx::Class::Storage::DBI/;
7
8 sub _dbh_last_insert_id {
9   my ($self, $dbh, $source, $col) = @_;
10   my ($id) = $dbh->selectrow_array('SELECT SCOPE_IDENTITY()');
11   return $id;
12 }
13
14 sub build_datetime_parser {
15   my $self = shift;
16   my $type = "DateTime::Format::Strptime";
17   eval "use ${type}";
18   $self->throw_exception("Couldn't load ${type}: $@") if $@;
19   return $type->new( pattern => '%Y-%m-%d %H:%M:%S' );  # %F %T
20 }
21
22 sub sqlt_type { 'SQLServer' }
23
24 sub _sql_maker_opts {
25     my ( $self, $opts ) = @_;
26
27     if ( $opts ) {
28         $self->{_sql_maker_opts} = { %$opts };
29     }
30
31     return { limit_dialect => 'Top', %{$self->{_sql_maker_opts}||{}} };
32 }
33
34 1;
35
36 =head1 NAME
37
38 DBIx::Class::Storage::DBI::MSSQL - Storage::DBI subclass for MSSQL
39
40 =head1 SYNOPSIS
41
42 This subclass supports MSSQL, and can in theory be used directly
43 via the C<storage_type> mechanism:
44
45   $schema->storage_type('::DBI::MSSQL');
46   $schema->connect_info('dbi:....', ...);
47
48 However, as there is no L<DBD::MSSQL>, you will probably want to use
49 one of the other DBD-specific MSSQL classes, such as
50 L<DBIx::Class::Storage::DBI::Sybase::MSSQL>.  These classes will
51 merge this class with a DBD-specific class to obtain fully
52 correct behavior for your scenario.
53
54 =head1 METHODS
55
56 =head2 last_insert_id
57
58 =head2 sqlt_type
59
60 =head2 build_datetime_parser
61
62 The resulting parser handles the MSSQL C<DATETIME> type, but is almost
63 certainly not sufficient for the other MSSQL 2008 date/time types.
64
65 =head1 AUTHORS
66
67 Brian Cassidy <bricas@cpan.org>
68
69 =head1 LICENSE
70
71 You may distribute this code under the same terms as Perl itself.
72
73 =cut