X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FSchema%2FLoader%2FDBI%2FSybase%2FMicrosoft_SQL_Server.pm;h=44310d7863643bf424d81c1af37bd26c40701007;hb=f671b6308c4f2210255b2eaa12fc47a49621d436;hp=30ffbc4a08827ca69cd57ec3d9de6e444bb03fed;hpb=e42ec4ef998118c71f8bd66e765f597a6f74dd39;p=dbsrgits%2FDBIx-Class-Schema-Loader.git diff --git a/lib/DBIx/Class/Schema/Loader/DBI/Sybase/Microsoft_SQL_Server.pm b/lib/DBIx/Class/Schema/Loader/DBI/Sybase/Microsoft_SQL_Server.pm index 30ffbc4..44310d7 100644 --- a/lib/DBIx/Class/Schema/Loader/DBI/Sybase/Microsoft_SQL_Server.pm +++ b/lib/DBIx/Class/Schema/Loader/DBI/Sybase/Microsoft_SQL_Server.pm @@ -4,39 +4,26 @@ use strict; use warnings; use base 'DBIx::Class::Schema::Loader::DBI::MSSQL'; use Carp::Clan qw/^DBIx::Class/; -use Class::C3; +use mro 'c3'; -our $VERSION = '0.05003'; +our $VERSION = '0.07002'; =head1 NAME -DBIx::Class::Schema::Loader::DBI::Sybase::Microsoft_SQL_Server - Subclass for -using MSSQL through DBD::Sybase +DBIx::Class::Schema::Loader::DBI::Sybase::Microsoft_SQL_Server - Driver for +using Microsoft SQL Server through DBD::Sybase =head1 DESCRIPTION -See L. - Subclasses L. -=cut - -# Returns an array of table names -sub _tables_list { - my $self = shift; - - my ($table, $type) = @_ ? @_ : ('%', '%'); - - my $dbh = $self->schema->storage->dbh; - my @tables = $dbh->tables(undef, $self->db_schema, $table, $type); - - return $self->_filter_tables(@tables); -} +See L and L. =head1 SEE ALSO -L, L, +L, +L, L L, L,