1 package DBIx::Class::Storage::DBI::MSSQL;
6 use base qw/DBIx::Class::Storage::DBI/;
8 sub _dbh_last_insert_id {
9 my ($self, $dbh, $source, $col) = @_;
10 my ($id) = $dbh->selectrow_array('SELECT @@IDENTITY');
14 sub build_datetime_parser {
16 my $type = "DateTime::Format::Strptime";
18 $self->throw_exception("Couldn't load ${type}: $@") if $@;
19 return $type->new( pattern => '%m/%d/%Y %H:%M:%S' );
26 DBIx::Class::Storage::DBI::MSSQL - Storage::DBI subclass for MSSQL
30 This subclass supports MSSQL, and can in theory be used directly
31 via the C<storage_type> mechanism:
33 $schema->storage_type('::DBI::MSSQL');
34 $schema->connect_info('dbi:....', ...);
36 However, as there is no L<DBD::MSSQL>, you will probably want to use
37 one of the other DBD-specific MSSQL classes, such as
38 L<DBIx::Class::Storage::DBI::Sybase::MSSQL>. These classes will
39 merge this class with a DBD-specific class to obtain fully
40 correct behavior for your scenario.
44 Brian Cassidy <bricas@cpan.org>
48 You may distribute this code under the same terms as Perl itself.