On Thu, 12 May 2016 21:35:02 -0400
Uri Guttman <u...@stemsystems.com> wrote:

>      my $holders = join ',', ('?') x @cgi_params ;
> 
> and i like here docs for sql so i can see the sql and not need all
> those quotes and noise.

PBP recommends that you put short strings that are all punctuation in
q{}, so they will be easier to read.

    my $holders = join q{,}, (q{?}) x @cgi_params ;


-- 
Don't stop where the ink does.
        Shawn

-- 
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