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

NAME

DBIx::Inspector::Column - column object

METHODS

$column->get($name)

You can get the value of parameter. The $name is listed in DBI.pm.

ATTRIBUTES

This class provides following attributes.

    sub name        { $_[0]->{COLUMN_NAME} }
    sub column_name { $_[0]->{COLUMN_NAME} }
    sub data_type   { $_[0]->{DATA_TYPE} }
    sub type_name   { $_[0]->{TYPE_NAME} }
    sub column_size { $_[0]->{COLUMN_SIZE} }
    sub nullable    { $_[0]->{NULLABLE} }
    sub remarks     { $_[0]->{REMARKS} }
    sub column_def  { $_[0]->{COLUMN_DEF} }
    sub is_nullable { $_[0]->{IS_NULLABLE} }

SEE ALSO

DBIx::Insepctor