2010-03-28 22:10:10 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2009-07-11 07:54:14 +00:00
|
|
|
<!-- $Revision$ -->
|
2007-06-20 22:25:43 +00:00
|
|
|
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.maxdb-debug">
|
2007-01-29 16:56:02 +00:00
|
|
|
<refnamediv>
|
|
|
|
<refname>maxdb_debug</refname>
|
|
|
|
<refpurpose>Performs debugging operations</refpurpose>
|
|
|
|
</refnamediv>
|
2007-06-16 19:11:13 +00:00
|
|
|
|
|
|
|
<refsect1 role="description">
|
|
|
|
&reftitle.description;
|
2007-01-29 16:56:02 +00:00
|
|
|
<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>
|
2007-06-16 19:11:13 +00:00
|
|
|
|
|
|
|
<refsect1 role="returnvalues">
|
|
|
|
&reftitle.returnvalues;
|
2007-01-29 16:56:02 +00:00
|
|
|
<para>
|
|
|
|
<function>maxdb_debug</function> doesn't return any value.
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
2007-06-16 19:11:13 +00:00
|
|
|
|
|
|
|
<refsect1 role="examples">
|
|
|
|
&reftitle.examples;
|
2007-01-29 16:56:02 +00:00
|
|
|
<example>
|
2012-01-11 06:50:17 +00:00
|
|
|
<title>&style.procedural;</title>
|
2007-01-29 16:56:02 +00:00
|
|
|
<programlisting role="php">
|
2005-01-12 18:53:25 +00:00
|
|
|
<![CDATA[
|
|
|
|
<?php
|
2007-01-29 16:56:02 +00:00
|
|
|
|
2005-03-08 16:39:06 +00:00
|
|
|
maxdb_debug("trace packet 200");
|
|
|
|
|
|
|
|
$link = maxdb_connect("localhost", "MONA", "RED", "DEMODB");
|
|
|
|
|
2007-01-29 16:56:02 +00:00
|
|
|
/* check connection */
|
2005-03-08 16:39:06 +00:00
|
|
|
if (!$link) {
|
|
|
|
printf("Connect failed: %s\n", maxdb_connect_error());
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* close connection */
|
2007-01-29 16:56:02 +00:00
|
|
|
maxdb_close($link);
|
2005-01-12 18:53:25 +00:00
|
|
|
?>
|
|
|
|
]]>
|
2007-01-29 16:56:02 +00:00
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
<para>
|
|
|
|
The above example produces no output.
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
2007-06-16 19:11:13 +00:00
|
|
|
|
2007-01-29 16:56:02 +00:00
|
|
|
</refentry>
|
2005-01-12 18:53:25 +00:00
|
|
|
|
|
|
|
<!-- 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
|
2009-09-25 07:04:39 +00:00
|
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
2005-01-12 18:53:25 +00:00
|
|
|
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
|
|
|
|
-->
|