int OCINumCols(int stmt);
OCINumCols() retourne le nombre de colonnes dans un résultat
|
Exemple 1. 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";
?>
|