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=e3582b0fdae4378eb781dcf2a56202e401d75cc5;hb=cb9c535fda0a11fd5615b0351474207a12b06992;hp=403ef915da45d5bad72772a4f1a1295e90791a35;hpb=dc767cd32c6728d4d9c3504acd259c0b2f19da2b;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 403ef91..e3582b0 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 @@ -3,40 +3,26 @@ package DBIx::Class::Schema::Loader::DBI::Sybase::Microsoft_SQL_Server; 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.05001'; +our $VERSION = '0.07034_02'; =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,