Thank you Lee. I had forgotten about that use case. I tried to do dibasic
query building once upon a time with JavaScript before discovering the
goodness of Perl. Ended up leaning on a library. It made things better, but
it didn't make them Perl.

On Thu, May 12, 2016, 5:06 PM lee <l...@yagibdah.de> wrote:

>
> ... I appreciate perl for:
>
>
> $dbh->do("INSERT INTO $T_ENTRIES (" .
>          join(', ', map($dbh->quote_identifier($_), $cgi->param)) . ')
> VALUES (' .
>          join(', ', map($dbh->quote($_), map($cgi->param($_),
> $cgi->param))) . ')')
>   if(scalar($cgi->param) == 111);
>
> --
> To unsubscribe, e-mail: beginners-unsubscr...@perl.org
> For additional commands, e-mail: beginners-h...@perl.org
> http://learn.perl.org/
>
>
>

Reply via email to