The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

DBIx::Inspector::Table - table object

METHODS

$table->catalog()
$table->schema()
$table->type()
$table->name()

Get each attributes.

my @columns = $table->columns();

Get DBIx::Inspector::Column objects.

my $column = $table->column($name);

Get DBIx::Inspector::Column object for $name.

my @pk = $table->primary_key();

Get DBIx::Inspector::Column objects for primary keys.

SEE ALSO

DBIx::Inspector