1 package DBIx::Class::Storage::DBI::Sybase;
6 use base qw/DBIx::Class::Storage::DBI::NoBindVars/;
8 my %noquote = map { $_ => 1 } qw(int integer);
10 sub should_quote_data_type {
13 return 0 if $noquote{$type};
14 return $self->next::method(@_);
21 DBIx::Class::Storage::DBI::Sybase - Storage::DBI subclass for Sybase
25 This subclass supports L<DBD::Sybase> for real Sybase databases. If
26 you are using an MSSQL database via L<DBD::Sybase>, see
27 L<DBIx::Class::Storage::DBI::Sybase::MSSQL>.
31 Brandon L Black <blblack@gmail.com>
35 You may distribute this code under the same terms as Perl itself.