ocinumcols

(PHP 3>= 3.0.4, PHP 4 , PHP 5)

ocinumcols --  Retorna o número de colunas encontradas em uma instrução

Descrição

int ocinumcols ( resource stmt )

ocinumcols() retorna o número de colunas em uma declaração stmt.

Exemplo 1. ocinumcols() example

<?php   
    
print "<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>";
?>