fix stupid identity bug, test empty insert (works), test DTs (not working yet)
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / SQLAnywhere.pm
CommitLineData
f200d74b 1package # hide from PAUSE
2 DBIx::Class::Storage::DBI::SQLAnywhere;
3
4use strict;
5use warnings;
6use base qw/DBIx::Class::Storage::DBI/;
7use mro 'c3';
8
9sub _rebless {
10 my $self = shift;
11
12 if (ref $self eq __PACKAGE__) {
13 require DBIx::Class::Storage::DBI::Sybase::ASA;
14 bless $self, 'DBIx::Class::Storage::DBI::Sybase::ASA';
15 $self->_rebless;
16 }
17}
18
191;