NAME

DBIx::SQLEngine::Schema::TableSet - Array of Schema::Table objects

SYNOPSIS

use DBIx::SQLEngine::Schema::TableSet;
my $tables = DBIx::SQLEngine::Schema::TableSet->new( $table1, $table2 );

print $tables->count;

foreach my $table ( $tables->tables ) {
  print $table->name;
}

$table = $tables->table_named( $name );

$ts->create_tables;

DESCRIPTION

DBIx::SQLEngine::Schema::TableSet objects contain an array of DBIx::SQLEngine::Schema::Table objects

SEE ALSO

See DBIx::SQLEngine for the overall interface and developer documentation.

See DBIx::SQLEngine::Docs::ReadMe for general information about this distribution, including installation and license information.