downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

oci_parse> <oci_num_fields
Last updated: Fri, 14 Aug 2009

view this page in

oci_num_rows

(PHP 5, PECL oci8 >= 1.1.0)

oci_num_rowsRetourne le nombre de lignes affectées durant la dernière commande Oracle

Description

int oci_num_rows ( resource $statement )

Retourne le nombre de lignes affectées durant la dernière commande Oracle.

Liste de paramètres

statement

Un identifiant de requête OCI valide.

Valeurs de retour

Retourne le nombre de lignes affectées, sous la forme d'un entier, ou FALSE si une erreur survient.

Exemples

Exemple #1 Exemple avec oci_num_rows()

<?php
$conn 
oci_connect("scott""tiger");

$stmt oci_parse($conn"create table emp2 as select * from emp");
oci_execute($stmt);
echo 
oci_num_rows($stmt) . " lignes insérées.<br />";
oci_free_statement($stmt);

$stmt oci_parse($conn"delete from emp2");
oci_execute($stmtOCI_DEFAULT);
echo 
oci_num_rows($stmt) . " lignes effacées.<br />";
oci_commit($conn);
oci_free_statement($stmt);

$stmt oci_parse($conn"drop table emp2");
oci_execute($stmt);
oci_free_statement($stmt);

oci_close($conn);
?>

Notes

Note: Cette fonction ne retourne pas le nombre de lignes sélectionnées. Pour les commandes de type SELECT, cette fonction va retourner le nombre de ligne qui ont été lues dans le buffer avec oci_fetch*().

Note: Dans les versions de PHP antérieures à la version 5.0.0, vous devez utiliser la fonction ocirowcount(). Cet ancien nom est toujours utilisable : un alias a été fait vers la fonction oci_num_rows(), pour assurer la compatibilité ascendante. Toutefois, il est recommandé de ne plus l'utiliser.



oci_parse> <oci_num_fields
Last updated: Fri, 14 Aug 2009
 
add a note add a note User Contributed Notes
oci_num_rows
sontung2603 at yahoo dot com
17-Feb-2006 10:35
hello,
here'is an example  who works:

$connexion = ("name_bd","pass_db");  //set up connexion on database
$query="select * from order ";   // query for the test
$parse = ociparse($connexion,$query);   // parse query
ociexecute($pase);   // execute the query on server (on temporary memory)
ocifetchstatement($pase,$tab_result);  // the result will be fetched in the table $tab_result
echo ocirowcount($parse);  // show the numbers of result

/**** and if you want to posting the results of query ***/
$count = count($tab_result);
for($i=0;$i<=$count;$i++)
{
     echo $tab_result[$i]."<br>";
}

you can also do it with the function ociresult():

while(ocifetch($parse))
{
    echo ociresult($parse,"[capital letter of the name of feild that you want to show on naviator]");
}

Attention : all of name of tables on oracle database are in capital letter when you use an other application for connect to it.
example :

to select the field no_client on table client, on your script of posting, you should write :

echo ociresult($parse,"NO_CLIENT");

not :

echo ociresult($parse,"no_client");

//end

Enjoy
justin at flakmag dot com
27-Aug-2000 01:59
It appears the easiest workaround if you want to get numrows without moving to the end of the result set is to use:

numrows = OCIFetchStatement(...);
OCIExecute(...);

So that the execute re-executes the query. It's horribly inefficient to query twice, but it works.
batti at digito dot com
16-Feb-2000 04:52
this function can be used with select statement, and also return affected number of rows.
But remember this, use this after fetch statement.

oci_parse> <oci_num_fields
Last updated: Fri, 14 Aug 2009
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites