Services webmasters
Partenaires
Jeux concours gratuits
 
ocinlogon
<<<
ocinumcols ociparse
>>>

7.72 Oracle 8
7 Index des fonctions
 Manuel PHP

Introduction
Pré-requis
Installation
Configuration à l'exécution
Types de ressources
Constantes prédefinies
Exemples
ocibindbyname
ocicancel
ocicloselob
ocicollappend
ocicollassign
ocicollassignelem
ocicollgetelem
ocicollmax
ocicollsize
ocicolltrim
ocicolumnisnull
ocicolumname
ocicolumnprecision
ocicolumnscale
ocicolumnsize
ocicolumntype
ocicolumntyperaw
ocicommit
ocidefinebyname
ocierror
ociexecute
ocifetch
ocifetchinto
ocifetchstatement
ocifreecollection
ocifreecursor
ocifreedesc
ocifreestatement
ociinternaldebug
ociloadlob
ocilogoff
ocilogon
ocinewcollection
ocinewcursor
ocinewdescriptor
ocinlogon
->ocinumcols
ociparse
ociplogon
ociresult
ocirollback
ocirowcount
ocisavelob
ocisavelobfile
ociserverversion
ocisetprefetch
ocistatementtype
ociwritelobtofile
ociwritetemporarylob

7.72.44 ocinumcols()Retourne le nombre de colonnes dans un résultat

[ Exemples avec ocinumcols ]   PHP 3>= 3.0.4, PHP 4

int  ocinumcols ( resource   stmt )

ocinumcols retourne le nombre de colonnes dans le résultat stmt .

Exemple avec ocinumcols

<?php   
    
print "<HTML><PRE>\n";   
    
$conn = OCILogon("scott", "tiger");
    
$stmt = OCIParse($conn,"select * from emp");
    
OCIExecute($stmt);
    while (
OCIFetch($stmt) ) {
        print
"\n";   
        
$ncols = OCINumCols($stmt);
        for (
$i = 1; $i <= $ncols; $i++ ) {
            
$column_name  = OCIColumnName($stmt,$i);
            
$column_value = OCIResult($stmt,$i);
            print
$column_name . ': ' . $column_value . "\n";
        }
        print
"\n";
    }
    
OCIFreeStatement($stmt);  
    
OCILogoff($conn);   
    print
"</PRE>";
    print
"</HTML>\n";
?>

<< ocinumcols >>
ocinlogon Oracle 8 ociparse
Services webmasters
Les manuels
 
CoursPHP.com - Reproduction interdite -