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;
This is an example use of the DBIx::DBO2 framework used for testing purposes.
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.