GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
SQLEngine::Schema::ColumnSet(3) User Contributed Perl Documentation SQLEngine::Schema::ColumnSet(3)

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 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.

2004-11-13 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.