set maxConnect in DSN and add docs
[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/
eabab5d0 7 DBIx::Class::Storage::DBI::Sybase::Base
8c44d0f2 8 DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server
f0070d01 9 DBIx::Class::Storage::DBI::NoBindVars
528accab 10/;
2ad62d97 11use mro 'c3';
98464041 12
131;
14
15=head1 NAME
16
17DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server - Storage::DBI subclass for MSSQL via
18DBD::Sybase
19
20=head1 SYNOPSIS
21
5608593e 22This subclass supports MSSQL server connections via L<DBD::Sybase>.
98464041 23
d4483998 24=head1 CAVEATS
98464041 25
d4483998 26This storage driver uses L<DBIx::Class::Storage::DBI::NoBindVars> as a base.
27This means that bind variables will be interpolated (properly quoted of course)
28into the SQL query itself, without using bind placeholders.
29
30More importantly this means that caching of prepared statements is explicitly
31disabled, as the interpolation renders it useless.
98464041 32
7e8cecc1 33The actual driver code for MSSQL is in
34L<DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server>.
35
98464041 36=head1 AUTHORS
37
b7505130 38See L<DBIx::Class/CONTRIBUTORS>.
98464041 39
40=head1 LICENSE
41
42You may distribute this code under the same terms as Perl itself.
43
44=cut