in reply to Re: Trying to build a where clause to insert into a DBIx::Class Query
in thread Trying to build a where clause to insert into a DBIx::Class Query

Thanks 1nickt,

That work. The only thing I had to do was to modify the mapping. You had qq{'%$_&'}.
For whatever reason, DBIx::Class produced ''%Orlando%'', ''%Miguel%'', ''%Jose%'', ''%Fernandez%''.
So, I removed the single quote from the mapping, qq{%$_%}, then it work perfectly.

Thanks again for your help.

-Phil-

  • Comment on Re^2: Trying to build a where clause to insert into a DBIx::Class Query