ocicolumnsize

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

ocicolumnsize -- Retourne la taille d'une colonne Oracle

Description

int ocicolumnsize ( resource stmt, mixed column )

ocicolumnsize() retourne la taille de la colonne. Vous pouvez utiliser l'index de colonne (l'indexation commence à 1) ou le nom de la colonne dans le paramètre column.

Exemple 1. Exemple avec ocicolumnsize()

<?php   
echo "<html><pre>\n";   
$conn = OCILogon("scott", "tiger");
$stmt = OCIParse($conn,"select * from emp");
OCIExecute($stmt);
echo
'<table>';
echo
'<tr>';
echo
'<th>Name</th>';
echo
'<th>Type</th>';
echo
'<th>Length</th>';
echo
'</tr>';
$ncols = OCINumCols($stmt);
for (
$i = 1; $i <= $ncols; $i++ ) {
  
$column_name  = OCIColumnName($stmt,$i);
  
$column_type  = OCIColumnType($stmt,$i);
  
$column_size  = OCIColumnSize($stmt,$i);
  echo
'<tr>';
  echo
'<td>' . $column_name . '</td>';
  echo
'<td>' . $column_type . '</td>';
  echo
'<td>' . $column_size . '</td>';
  echo
'</tr>';
}
echo
'</table>';
OCIFreeStatement($stmt);  
OCILogoff($conn);   
echo
'</pre>';
echo
"</html>\n";
?>

Note : Cette fonction a été renommée en oci_field_size() pour PHP version 5.0.0 et plus récent. Pour la compatibilité ascendante, ocicolumnsize() peut toujours être utilisée. Toutefois, elle est obsolète.