ok, i don't think i've done anything stupid, yet stupid things keep happening. here's the deal.

for the convenience of my fellow perl haxors at my company, i have created a module which centralises a whole lot of basic code to handle http sessioning, cgi parameter-handling, db connections and the like. no probs.

what's got me stuped is the following routine -- given an sql statement, it prepares it, executes it and returns a statement handle (if a select statement was given), or number of insert rows/update rows/delete rows otherwise.

the problem is that the routine never returns an actual $sth statement handle, even when a given sql query is successful. within the routine, printing $sth prints the expected DBI::st object, but in client code, the returned $sth is always '', the null string.

here is the routine:

sub do_sql { my $this = shift; my $sql = shift || return; my $dbh = $this->get_db_connection(); eval { if ( $sql =~ /^select/i ) { $this->log_internal_notice("executing sql query: $sql"); my $sth = $dbh->prepare( $sql ); my $nmb = $sth->execute(); $this->log_internal_notice( $nmb == 1 ? "1 result" : "$nmb results" ); return $sth; } else { $this->log_notice("executing non-select sql: $sql"); return $dbh->do( $sql ); } }; if ( $@ ) { $this->log_warning("Caught exception executing sql: $@"); return; } }

and here is some client code:

my $sth = $my_module_object->do_sql( $sql ) || return "<p><i>There are currently no experiment steps in this +experiment</i></p>";

Any ideas?

All replies much appreciated...
dirty


In reply to calling all DBI wizards... by d_i_r_t_y

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.