2010-08-05 09:43:31 +00:00
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<refentry xml:id= "function.cubrid-error-msg" xmlns= "http://docbook.org/ns/docbook" xmlns:xlink= "http://www.w3.org/1999/xlink" >
<refnamediv >
<refname > cubrid_error_msg</refname>
<refpurpose > Is used to get the error message</refpurpose>
</refnamediv>
<refsect1 role= "description" >
&reftitle.description;
<methodsynopsis >
<type > string</type> <methodname > cubrid_error_msg</methodname>
<void />
</methodsynopsis>
<para >
2010-08-05 15:05:42 +00:00
The <function > cubrid_error_msg</function> function is used to get the error message that occurred during the use of CUBRID API. Usually, it gets error message when API returns false as its return value.
2010-08-05 09:43:31 +00:00
</para>
</refsect1>
<refsect1 role= "parameters" >
&reftitle.parameters;
&no.function.parameters;
</refsect1>
<refsect1 role= "returnvalues" >
&reftitle.returnvalues;
<para >
2010-08-05 15:05:42 +00:00
Error message that occurred.
2010-08-05 09:43:31 +00:00
</para>
<para />
</refsect1>
<refsect1 role= "examples" >
&reftitle.examples;
<example >
<title > <function > cubrid_error_msg</function> example</title>
<programlisting role= "php" >
< ![CDATA[
< ?php
$req = cubrid_execute ($con, "select id, name from person");
if ($req) {
while (list ($id, $name) = cubrid_fetch($req))
echo $id, $name;
} else {
echo "Error Code: ", cubrid_error_code ();
echo "Error Facility: ", cubrid_error_code_facility ();
echo "Error Message: ", cubrid_error_msg ();
}
?>
]]>
</programlisting>
</example>
</refsect1>
<refsect1 role= "seealso" >
&reftitle.seealso;
<para >
<simplelist >
<member > <function > cubrid_error_code</function> </member>
<member > <function > cubrid_error_code_facility</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
-->