Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision d1f932ad

Von Moritz Bunkus vor fast 16 Jahren hinzugefügt

  • ID d1f932ad48cf69e11e55d10d65fb6c5e528ea55e
  • Vorgänger 4efe2175
  • Nachfolger 7942a6ac

Die Rückgabewerte der Funktionen DBI::do und DBH::execute zurückgeben.

Unterschiede anzeigen:

SL/DBUtils.pm
dump_query(LXDebug::QUERY, '', $query, @_);
my $result;
if (0 == scalar(@_)) {
$dbh->do($query) || $form->dberror($query);
$result = $dbh->do($query) || $form->dberror($query);
} else {
$dbh->do($query, undef, @_) ||
$form->dberror($query . " (" . join(", ", @_) . ")");
$result = $dbh->do($query, undef, @_) || $form->dberror($query . " (" . join(", ", @_) . ")");
}
$main::lxdebug->leave_sub(2);
return $result;
}
sub selectrow_query { &selectfirst_array_query }
......
dump_query(LXDebug::QUERY, '', $query, @_);
my $result;
if (0 == scalar(@_)) {
$sth->execute() || $form->dberror($query);
$result = $sth->execute() || $form->dberror($query);
} else {
$sth->execute(@_) || $form->dberror($query . " (" . join(", ", @_) . ")");
$result = $sth->execute(@_) || $form->dberror($query . " (" . join(", ", @_) . ")");
}
$main::lxdebug->leave_sub(2);
return $result;
}
sub dump_query {
......
Uses DBI::do to execute QUERY on DBH using ARRAY for binding values. FORM is only needed for error handling, but should always be passed nevertheless. Use this for insertions or updates that don't need to be prepared.
Returns the result of DBI::do which is -1 in case of an error and the number of affected rows otherwise.
=item do_statement FORM,STH,QUERY,ARRAY
Uses DBI::execute to execute QUERY on DBH using ARRAY for binding values. As with do_query, FORM is only used for error handling. If you are unsure what to use, refer to the documentation of DBI::do and DBI::execute.
Returns the result of DBI::execute which is -1 in case of an error and the number of affected rows otherwise.
=item prepare_execute_query FORM,DBH,QUERY,ARRAY
Prepares and executes QUERY on DBH using DBI::prepare and DBI::execute. ARRAY is passed as binding values to execute.

Auch abrufbar als: Unified diff