X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class.git;a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FStorage%2FDBI%2FSybase.pm;h=41b0c81bb297e2557717b25f779ed064c3832335;hp=2e01e8e5ff594f5d17f51b833d3403aa730baa38;hb=26283ee38f220f6c6bae720ea5a189c9c0f47f6f;hpb=48a76fcfd023d2149f6980bd9a7bdc4937dbc4fc diff --git a/lib/DBIx/Class/Storage/DBI/Sybase.pm b/lib/DBIx/Class/Storage/DBI/Sybase.pm index 2e01e8e..41b0c81 100644 --- a/lib/DBIx/Class/Storage/DBI/Sybase.pm +++ b/lib/DBIx/Class/Storage/DBI/Sybase.pm @@ -4,780 +4,63 @@ use strict; use warnings; use base qw/ - DBIx::Class::Storage::DBI::Sybase::Common - DBIx::Class::Storage::DBI::AutoCast + DBIx::Class::Storage::DBI::Sybase::Base + DBIx::Class::Storage::DBI::NoBindVars /; use mro 'c3'; -use Carp::Clan qw/^DBIx::Class/; -use List::Util (); -use Sub::Name (); - -__PACKAGE__->mk_group_accessors('simple' => - qw/_identity _blob_log_on_update _writer_storage _is_writer_storage - _identity_method/ -); - -my @also_proxy_to_writer_storage = qw/ - disconnect _connect_info _sql_maker _sql_maker_opts disable_sth_caching - auto_savepoint unsafe cursor_class debug debugobj schema -/; - -=head1 NAME - -DBIx::Class::Storage::DBI::Sybase - Sybase support for DBIx::Class - -=head1 SYNOPSIS - -This subclass supports L for real Sybase databases. If you are -using an MSSQL database via L, your storage will be reblessed to -L. - -=head1 DESCRIPTION - -If your version of Sybase does not support placeholders, then your storage -will be reblessed to L. You can -also enable that driver explicitly, see the documentation for more details. - -With this driver there is unfortunately no way to get the C -without doing a C, which is the only way to get the C value in this -mode. - -In addition, they are done on a separate connection so that it's possible to -have active cursors when doing an insert. - -When using C transactions are -disabled, as there are no concurrency issues with C