Btw: if you write your dosql the following way, you can use sql parameters and get better error handling/messages, e.g.
my $sql = q~SELECT a,b,c,d FROM table WHERE e=? and f=?~;
my $data = dosql($dbh, $sql, 1, $value1, $value2);
sub dosql {
my( $dbh, $sqlStatement, $response, @params )= @_;
# some databases already check the sql or even do
# something when the prepare is executed
my $sth = $dbh->prepare($sqlstatement)
or die "Couldn't prepare SQL statement: $DBI::errstr\n\t$sqlStat
+ement";
$sth->execute(@params)
or die "Could not execute MySQL statement: $DBI::errstr\n\t$sqls
+tatement";
my @results = ();
if( $response ) {
while( my @row = $sth->fetchrow_array ) {
# since @row is only valid within the while loop
# you can use \@row instead of [ @row ]
push( @results, \@row );
} # while
} # if
$sth->finish();
return \@results;
} # dosql
Best regards,
perl -e "s>>*F>e=>y)\*martinF)stronat)=>print,print v8.8.8.32.11.32"
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.