in reply to Re^2: Problems Using Join in DBIx::Class
in thread Problems Using Join in DBIx::Class

Can't locate object method "LName"

Try using ->p->LName

for (@proc_requests){ print join "\t",$_->PID,$_->p->LName,$_->sent_email,"\n"; };

I agree with soonix, your SQL logic is odd. It will retrieve sent_email values of '0000-00-00' because they are defined.

poj

Replies are listed 'Best First'.
Re^4: Problems Using Join in DBIx::Class
by phildeman (Scribe) on Dec 29, 2017 at 02:19 UTC
    Thanks poj. That was it. I overlooked that. -Phil-