|
NAMEDBIx::SQLEngine::Schema::ColumnSet - Array of Schema::Column objects SYNOPSIS my $colset = DBIx::SQLEngine::Schema::ColumnSet->new( $column1, $column2 );
print $colset->count;
foreach my $column ( $colset->columns ) {
print $column->name;
}
$column = $colset->column_named( $name );
DESCRIPTIONDBIx::SQLEngine::Schema::ColumnSet objects contain an array of DBIx::SQLEngine::Schema::Column objects REFERENCECreation
Access to Columns
Column Names
SEE ALSOSee 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.
|