Secondly, the call to bind_columns is a bit off. This is supposed to be an array (see DBI docs)
my $rv = sth->bind_columns(\(undef,$uname,$fname,$fgroup,$dmod,$accts) + );
Er... It's supposed to be a list. And taking a reference to a list (like you have done) makes a list of references (see perlref). So what you wrote was equivalent to what the original poster wrote, except your first argument is a ref to undef instead of undef itself.
## from perlref @list = (\$a, \@b, \%c); @list = \($a, @b, %c); # same thing!
You'll notice in the DBI docs that any use of bind_columns with an actual named array uses the form \( @array ) -- which also makes a list of references, and not an array reference. It's different than [ @array ] and \@array.

blokhead


In reply to Re: Re: Another meek DBI question by blokhead
in thread Another meek DBI question by coyotlgw

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.