|
Alzabo::Schema - Schema objects |
Alzabo::Schema - Schema objects
use Alzabo::Schema;
my $schema = Alzabo::Schema->load_from_file('foo');
foreach my $t ($schema->tables)
{
print $t->name;
}
Objects in this class represent the entire schema, containing table objects, which in turn contain foreign key objects and column objects, which in turn contain column definition objects.
A string containing the name of the schema.
An Alzabo::Table object representing the specified
table.
A list of Alzabo::Table object named in the list
given. If no list is provided, then it returns all table objects in
the schema.
The Alzabo::Driver subclass object for the
schema.
Dave Rolsky, <autarch@urth.org>
|
Alzabo::Schema - Schema objects |