PHP Doku:: Get number of affected rows in previous Cubrid operation - function.cubrid-affected-rows.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische DatenbankerweiterungenCubridCubrid Funktionencubrid_affected_rows

Ein Service von Reinhard Neidl - Webprogrammierung.

Cubrid Funktionen

<<Cubrid Funktionen

cubrid_bind>>

cubrid_affected_rows

(PECL CUBRID >= 8.3.0)

cubrid_affected_rowsGet number of affected rows in previous Cubrid operation

Beschreibung

int cubrid_affected_rows ( resource $req_identifier )

The cubrid_affected_rows() function is used to get the number of rows affected by the SQL sentence (INSERT, DELETE, UPDATE).

Parameter-Liste

req_identifier

Request identifier.

Rückgabewerte

Number of rows affected by the SQL sentence, when process is successful.

-1, when SQL sentence is not INSERT, DELETE or UPDATE.

Beispiele

Beispiel #1 cubrid_affected_rows() example

<?php
$req 
cubrid_execute ($con"delete from person where name like ’j%’ ");
if (
$req) {
   
$row_count cubrid_affected_rows ($req);
   echo 
$row_count;
   
cubrid_close_request ($req);
}
?>

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)