On Thu, 12 May 2016 21:35:02 -0400
Uri Guttman <[email protected]> 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: [email protected]
For additional commands, e-mail: [email protected]
http://learn.perl.org/


Reply via email to