From: Peter Rabbitson Date: Tue, 3 Mar 2009 22:32:50 +0000 (+0000) Subject: Put code back into branch (and fix trunk snafu) X-Git-Tag: v0.08100~64 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f68f4d44dc650e682df4ab522b91e6f683c10e7a;p=dbsrgits%2FDBIx-Class.git Put code back into branch (and fix trunk snafu) --- diff --git a/lib/DBIx/Class/Storage/DBI/Sybase.pm b/lib/DBIx/Class/Storage/DBI/Sybase.pm new file mode 100644 index 0000000..87acdde --- /dev/null +++ b/lib/DBIx/Class/Storage/DBI/Sybase.pm @@ -0,0 +1,28 @@ +package DBIx::Class::Storage::DBI::Sybase; + +use strict; +use warnings; + +use base qw/DBIx::Class::Storage::DBI::NoBindVars/; + +1; + +=head1 NAME + +DBIx::Class::Storage::DBI::Sybase - Storage::DBI subclass for Sybase + +=head1 SYNOPSIS + +This subclass supports L for real Sybase databases. If +you are using an MSSQL database via L, see +L. + +=head1 AUTHORS + +Brandon L Black + +=head1 LICENSE + +You may distribute this code under the same terms as Perl itself. + +=cut