2010-09-08 01:27:51 +00:00
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
2010-08-05 09:43:31 +00:00
2010-09-08 01:27:51 +00:00
<refentry xml:id= "function.cubrid-num-cols" xmlns= "http://docbook.org/ns/docbook" xmlns:xlink= "http://www.w3.org/1999/xlink" >
<refnamediv >
<refname > cubrid_num_cols</refname>
<refpurpose > Is used to get the number of columns</refpurpose>
</refnamediv>
<refsect1 role= "description" >
&reftitle.description;
<methodsynopsis >
<type > int</type> <methodname > cubrid_num_cols</methodname>
<methodparam > <type > resource</type> <parameter > req_identifier</parameter> </methodparam>
</methodsynopsis>
<para >
The <function > cubrid_num_cols</function> function is used to get the number of columns from the query result. It can only be used when the query executed is a select sentence.
</para>
</refsect1>
<refsect1 role= "parameters" >
&reftitle.parameters;
<para >
<variablelist >
<varlistentry >
<term > <parameter > req_identifier</parameter> </term>
<listitem > <para > Request identifier.</para> </listitem>
</varlistentry>
</variablelist>
</para>
2010-08-05 09:43:31 +00:00
</refsect1>
2010-09-08 01:27:51 +00:00
<refsect1 role= "returnvalues" >
&reftitle.returnvalues;
<para >
Number of columns, when process is successful.
</para>
<para >
-1, if SQL sentence is not SELECT.
</para>
</refsect1>
<refsect1 role= "examples" >
&reftitle.examples;
<example >
<title > <function > cubrid_num_cols</function> example</title>
<programlisting role= "php" >
< ![CDATA[
< ?php
$req = cubrid_execute ($con, "select * from member");
if ($req) {
$rows_count = cubrid_num_rows ($req);
$cols_count = cubrid_num_cols ($req);
echo "result set rows count : $rows\n";
echo "result set columns count : $cols\n";
cubrid_close_request ($req);
}
?>
]]>
</programlisting>
</example>
</refsect1>
<refsect1 role= "seealso" >
&reftitle.seealso;
<para >
<simplelist >
<member > <function > cubrid_execute</function> </member>
<member > <function > cubrid_num_rows</function> </member>
</simplelist>
</para>
</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:"~/.phpdoc/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
-->