Definitely. I once made the same mistake as the OP and it still worked, but one shouldn't count on that. There's no guarantee that it'll work with different database drivers, different versions of the driver being used, or even from call to call.

Aside from that, the OP should consider using selectrow_array since only the first row is fetched.

my $sth = $db->prepare('SELECT * FROM milton1'); $sth->execute(); my ($additionaltext) = $sth->fetchrow_array; $sth->finish;

becomes

my ($additionaltext) = $db->selectrow_array('SELECT * FROM milton1');

I'm also annoyed by the inconsistency between $db and $sth. Use "h" for both or for neither. Actually, use "h" for both to be consistent with all the documentation out there.


In reply to Re^2: Comparing the individual characters in two strings to find their differences by ikegami
in thread Comparing the individual characters in two strings to find their differences by Quicksilver

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.