2002-04-15 00:12:54 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
2004-04-01 08:11:29 +00:00
|
|
|
<!-- $Revision: 1.3 $ -->
|
2004-03-08 14:12:17 +00:00
|
|
|
<refentry id="function.oci-field-size">
|
2002-04-15 00:12:54 +00:00
|
|
|
<refnamediv>
|
2004-03-08 14:12:17 +00:00
|
|
|
<refname>oci_field_size</refname>
|
|
|
|
<refpurpose>Returns field's size</refpurpose>
|
2002-04-15 00:12:54 +00:00
|
|
|
</refnamediv>
|
|
|
|
<refsect1>
|
|
|
|
<title>Description</title>
|
|
|
|
<methodsynopsis>
|
2004-03-08 14:12:17 +00:00
|
|
|
<type>int</type><methodname>oci_field_size</methodname>
|
2003-08-12 08:56:59 +00:00
|
|
|
<methodparam><type>resource</type><parameter>stmt</parameter></methodparam>
|
2004-03-08 14:12:17 +00:00
|
|
|
<methodparam><type>mixed</type><parameter>field</parameter></methodparam>
|
2002-04-15 00:12:54 +00:00
|
|
|
</methodsynopsis>
|
|
|
|
<para>
|
2004-03-09 09:28:20 +00:00
|
|
|
<function>oci_field_size</function> returns the size of a field in
|
2004-03-08 14:12:17 +00:00
|
|
|
bytes. Value of <parameter>field</parameter> parameter can be the field's
|
|
|
|
index (1-based) or it's name.
|
2002-04-15 00:12:54 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
<example>
|
2004-03-08 14:12:17 +00:00
|
|
|
<title><function>oci_field_size</function>example</title>
|
2003-08-16 16:59:40 +00:00
|
|
|
<programlisting role="php">
|
2002-04-15 00:12:54 +00:00
|
|
|
<![CDATA[
|
|
|
|
<?php
|
2004-03-08 14:12:17 +00:00
|
|
|
$conn = oci_connect("scott", "tiger");
|
|
|
|
$stmt = oci_parse($conn, "SELECT * FROM emp");
|
|
|
|
oci_execute($stmt);
|
|
|
|
|
2003-12-15 16:55:22 +00:00
|
|
|
echo "<table border=\"1\">";
|
|
|
|
echo "<tr>";
|
|
|
|
echo "<th>Name</th>";
|
|
|
|
echo "<th>Type</th>";
|
|
|
|
echo "<th>Length</th>";
|
|
|
|
echo "</tr>";
|
2004-03-08 14:12:17 +00:00
|
|
|
|
|
|
|
$ncols = oci_num_fields($stmt);
|
|
|
|
|
2003-12-15 16:55:22 +00:00
|
|
|
for ($i = 1; $i <= $ncols; $i++) {
|
2004-03-08 14:12:17 +00:00
|
|
|
$column_name = oci_field_name($stmt, $i);
|
|
|
|
$column_type = oci_field_type($stmt, $i);
|
|
|
|
$column_size = oci_field_size($stmt, $i);
|
2003-12-15 16:55:22 +00:00
|
|
|
echo "<tr>";
|
|
|
|
echo "<td>$column_name</td>";
|
|
|
|
echo "<td>$column_type</td>";
|
|
|
|
echo "<td>$column_size</td>";
|
|
|
|
echo "</tr>";
|
2002-04-15 00:12:54 +00:00
|
|
|
}
|
2004-03-08 14:12:17 +00:00
|
|
|
|
2003-12-15 16:55:22 +00:00
|
|
|
echo "</table>";
|
2004-03-08 14:12:17 +00:00
|
|
|
|
|
|
|
oci_free_statement($stmt);
|
|
|
|
oci_close($conn);
|
2002-04-15 00:12:54 +00:00
|
|
|
?>
|
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
</para>
|
2004-04-01 08:11:29 +00:00
|
|
|
<note>
|
|
|
|
<para>
|
|
|
|
In PHP versions before 5.0.0 you must use <function>ocicolumnsize</function> instead.
|
|
|
|
This name still can be used, it was left as alias of
|
|
|
|
<function>oci_field_size</function> for downwards compatability.
|
|
|
|
This, however, is deprecated and not recommended.
|
|
|
|
</para>
|
|
|
|
</note>
|
2002-04-15 00:12:54 +00:00
|
|
|
<simpara>
|
2004-03-08 14:12:17 +00:00
|
|
|
See also <function>oci_num_fields</function> and
|
|
|
|
<function>oci_field_name</function>.
|
2002-04-15 00:12:54 +00:00
|
|
|
</simpara>
|
|
|
|
</refsect1>
|
|
|
|
</refentry>
|
|
|
|
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
|
|
Local variables:
|
|
|
|
mode: sgml
|
|
|
|
sgml-omittag:t
|
|
|
|
sgml-shorttag:t
|
|
|
|
sgml-minimize-attributes:nil
|
|
|
|
sgml-always-quote-attributes:t
|
|
|
|
sgml-indent-step:1
|
|
|
|
sgml-indent-data:t
|
|
|
|
indent-tabs-mode:nil
|
|
|
|
sgml-parent-document:nil
|
|
|
|
sgml-default-dtd-file:"../../../../manual.ced"
|
|
|
|
sgml-exposed-tags:nil
|
|
|
|
sgml-local-catalogs:nil
|
|
|
|
sgml-local-ecat-files:nil
|
|
|
|
End:
|
|
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
|
|
vim: et tw=78 syn=sgml
|
|
|
|
vi: ts=1 sw=1
|
|
|
|
-->
|