ocirowcount
(PHP 3>= 3.0.7, PHP 4 )
ocirowcount -- Retourne le nombre de lignes affectées
Description
int
ocirowcount ( resource statement)
ocirowcount() retourne le nombre de lignes
affectées par la commande de modification (UPDATE) statement.
Cette fonction ne vous indiquera pas le nombre de lignes retournées par
un SELECT : il faut que les lignes aient été modifiées.
Exemple 1. Exemple avec ocirowcount() <?php
print "<HTML><PRE>";
$conn = OCILogon("scott","tiger");
$stmt = OCIParse($conn,"create table emp2 as select * from emp");
OCIExecute($stmt);
print OCIRowCount($stmt) . " rows inserted.<BR>";
OCIFreeStatement($stmt);
$stmt = OCIParse($conn,"delete from emp2");
OCIExecute($stmt);
print OCIRowCount($stmt) . " rows deleted.<BR>";
OCICommit($conn);
OCIFreeStatement($stmt);
$stmt = OCIParse($conn,"drop table emp2");
OCIExecute($stmt);
OCIFreeStatement($stmt);
OCILogOff($conn);
print "</PRE></HTML>";
?> |
|