mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-19 18:38:55 +00:00

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@184408 c90b9560-bf6c-de11-be94-00142212c4b1
83 lines
2.6 KiB
XML
83 lines
2.6 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision: 1.3 $ -->
|
|
<refentry id="function.maxdb-debug">
|
|
<refnamediv>
|
|
<refname>maxdb_debug</refname>
|
|
<refpurpose>Performs debugging operations</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>Description</title>
|
|
<methodsynopsis>
|
|
<type>void</type><methodname>maxdb_debug</methodname>
|
|
<methodparam><type>string</type><parameter>debug</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
The <function>maxdb_debug</function> can be used to trace the SQLDBC communication. The following
|
|
strings can be used as a parameter to <function>maxdb_debug</function>:
|
|
</para>
|
|
<simplelist>
|
|
<member>TRACE SHORT ON|OFF - Enables/disables method call trace.</member>
|
|
<member>TRACE LONG ON|OFF - Enables/disables method argument and detail debug trace.</member>
|
|
<member>TRACE PACKET ON|OFF|<size> - Enables/disables packet trace, limiting the size of the
|
|
traced object to the specified number of bytes, or 1000 if no size is specified.</member>
|
|
<member>TRACE SQL ON|OFF - Enables/disables high level api trace.</member>
|
|
<member>TRACE TIMESTAMP ON|OFF - Enables/disables a timestamp prefix on each line that is
|
|
traced.</member>
|
|
<member>TRACE SIZE <size> - Limits the size of the trace file to <size> bytes,
|
|
at least 8192 bytes are required.</member>
|
|
</simplelist>
|
|
</refsect1>
|
|
<refsect1>
|
|
<title>Return values</title>
|
|
<para><function>maxdb_debug</function> doesn't return any value.</para>
|
|
</refsect1>
|
|
<refsect1>
|
|
<title>Example</title>
|
|
<example>
|
|
<title>Procedural style</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
|
|
maxdb_debug("trace packet 200");
|
|
|
|
$link = maxdb_connect("localhost", "MONA", "RED", "DEMODB");
|
|
|
|
/* check connection */
|
|
if (!$link) {
|
|
printf("Connect failed: %s\n", maxdb_connect_error());
|
|
exit();
|
|
}
|
|
|
|
/* close connection */
|
|
maxdb_close($link);
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
<para>
|
|
The above example produces no output.
|
|
</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:"../../../../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
|
|
-->
|