...as soon as placeholders come into play, don't use the do method.

I would disagree with this, in some cases. First, I think the syntax is less ugly when using placeholders (just looking at your example), and second, for databases that support query caches (and cached query plans), using placeholders makes it more likely that your query will be found in the cache (though this second point does not apply to PostgreSQL, yet).

But I'm also still curious as to why the OP's original code has a problem, and IMHO it would be worthwhile debugging it to make DBD::Pg a better module, if indeed it is a bug with that module. I tried to reproduce the problem myself (see above), but I couldn't see any problem, which makes me think it might be the version of DBD::Pg (in which case forget debugging, just upgrade).

Oh, and the second argument to "do" is a hash reference, but it is rarely used, and so it is usually set to undef.


In reply to Re^2: DBD::Pg placeholder problem by runrig
in thread DBD::Pg placeholder problem by McMahon

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.