DBIx::SQLEngine::Schema::ColumnSet - Array of Schema::Column objects
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 );
DBIx::SQLEngine::Schema::ColumnSet objects contain an array of DBIx::SQLEngine::Schema::Column objects
new()
DBIx::SQLEngine::Schema::ColumnSet->new( @columns ) : $colset
Basic array constructor.
columns()
$colset->columns () : @columns
Returns a list of column objects.
column_names()
$colset->column_names () : @column_names
Returns the result of calling name() on each column.
column_named()
$colset->column_named ( $name ) : $column
Finds the column with that name, or dies trying.
See the DBIx::SQLEngine manpage for the overall interface and developer documentation.
See the DBIx::SQLEngine::Docs::ReadMe manpage for general information about this distribution, including installation and license information.