add a line to Changes and add a CAVEAT
[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;
5
6use base qw/DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server DBIx::Class::Storage::DBI::Sybase/;
7
81;
9
10=head1 NAME
11
12DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server - Storage::DBI subclass for MSSQL via
13DBD::Sybase
14
15=head1 SYNOPSIS
16
17This subclass supports MSSQL connected via L<DBD::Sybase>.
18
19 $schema->storage_type('::DBI::Sybase::Microsoft_SQL_Server');
20 $schema->connect_info('dbi:Sybase:....', ...);
21
d4483998 22=head1 CAVEATS
98464041 23
d4483998 24This storage driver uses L<DBIx::Class::Storage::DBI::NoBindVars> as a base.
25This means that bind variables will be interpolated (properly quoted of course)
26into the SQL query itself, without using bind placeholders.
27
28More importantly this means that caching of prepared statements is explicitly
29disabled, as the interpolation renders it useless.
98464041 30
31=head1 AUTHORS
32
33Brandon L Black <blblack@gmail.com>
34
35Justin Hunter <justin.d.hunter@gmail.com>
36
37=head1 LICENSE
38
39You may distribute this code under the same terms as Perl itself.
40
41=cut