[Catalyst] Some guidance needed please
Simon Wilcox
simonw at digitalcraftsmen.net
Thu Sep 13 14:18:03 GMT 2007
Will Hawes wrote:
>
> Whoops, my bad. $c->model() does indeed return a DBIx::Class::ResultSet,
> so you would need to retrieve/create an instance of your UsedPassword
> class from the resultset in order to call any methods on it:
>
> my $used_password = $c->model('DBIC::UsedPassword')->create( { user =>
> 'user', password => 'password' } );
> $used_password->foo_method()
IIRC, can't you get the original record source back from the resultset ?
my $used_password =
$c->model('DBIC::UsedPassword')->result_source->create_limited();
S.
More information about the Catalyst
mailing list