I tried to call the function with a join() attempting to join @args with commas effectively turning the args into a scalar separated by commas but I couldn't fool the execute command this way.

I've been thinking about this for the past five minutes (waiting on another database), and I cannot find any way where this makes sense to me. If you need four arguments, why would you expect that gyrating to pass only one argument would work? (My best guess is that you see a similarity between "1, 2, 3" and (1, 2, 3) where, semantically, none exists.)

I'm willing to bet that a judicious use of split would solve your problem. I'll even give you two better diagnostics to prove that @args doesn't contain what you think it contains:

local $" = ')('; print "Results contains: ", scalar( @args ), " elements:\n"; print "(@args)\n";

Update: Replaced @results with @args, as it should have been from the start.


In reply to Re: DBI execute() args in array format (or similar) possible? by chromatic
in thread DBI execute() args in array format (or similar) possible? by snafu

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.