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

NAME

DBIx::Class::MooseColumns::Meta::Role::Attribute::DBICColumn - Attribute metaclass trait for DBIx::Class::MooseColumns for attributes that are non-inflated DBIC columns

METHODS

has_value

Overridden (wrapped with an around method modifier) from "has_value" in Class::MOP::Attribute.

Calls "has_column_loaded" in DBIx::Class::Row to check if the column is initialized.

get_raw_value

Overridden (wrapped with an around method modifier) from "get_raw_value" in Class::MOP::Attribute.

Calls "get_column" in DBIx::Class::Row to get the (deflated) column value.

set_raw_value

Overridden (wrapped with an around method modifier) from "set_raw_value" in Class::MOP::Attribute.

Calls "set_column" in DBIx::Class::Row to set the (deflated) column value.

clear_value

Overridden (wrapped with an around method modifier) from "clear_value" in Class::MOP::Attribute.

Currently unimplemented. (DBIC has no public API for this operation currently)

_set_initial_slot_value

Overridden (wrapped with an around method modifier) from "_set_initial_slot_value" in Moose::Meta::Attribute.

Calls "set_column" in DBIx::Class::Row to set the (deflated) column value.

inline_has

Overridden (wrapped with an around method modifier) from "inline_has" in Class::MOP::Attribute.

Calls "has_column_loaded" in DBIx::Class::Row to check if the column is initialized.

inline_get

Overridden (wrapped with an around method modifier) from "inline_get" in Class::MOP::Attribute.

Calls "get_column" in DBIx::Class::Row to get the (deflated) column value.

inline_set

Overridden (wrapped with an around method modifier) from "inline_set" in Class::MOP::Attribute.

Calls "set_column" in DBIx::Class::Row to set the (deflated) column value.

inline_clear

Overridden (wrapped with an around method modifier) from "inline_clear" in Class::MOP::Attribute.

Currently unimplemented. (DBIC has no public API for this operation currently)