http://qs321.pair.com?node_id=317792


in reply to (z) SUPER and Class::DBI

mm.. can't find the reference I've read but basically..

In CDBI your column accessors are dynamically created, not inherited from another class so when you override a method, then it's gone and there is no SUPER::method.

In this instance you probably want to use the basic set method:

# ... return $self->set(password => $_[0]);

cheers,

J