1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
<?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
-->
|