|
NAMEDBIx::SQLEngine::Schema::Column - Struct for database column info SYNOPSIS my $col = DBIx::SQLEngine::Schema::Column->new(
name=>$colname, type=>$typename
);
print $col->name;
if ( $col->type eq 'text' ) {
print "text, length " . $col->length;
} else {
print $col->type;
}
DESCRIPTIONDBIx::SQLEngine::Schema::Column objects are very simple structures that hold information about columns in a database table or query result. They are generally contained in a DBIx::SQLEngine::Schema::ColumnSet. REFERENCEThese methods are available for all types of column. Constructor
Accessorstext AttributesThese methods are only available for columns of type text. 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.
|