Query/docs/structure.xml
2014-04-02 17:09:34 -04:00

7302 lines
372 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<project title="Query" version="2.2.0&#10;">
<partials/>
<file path="classes/sql_interface.php" generated-path="classes.sql_interface.html" hash="04806cfa33b7bfb5a38cb6141a27614e" package="Query">
<docblock line="0">
<description>Query</description>
<long-description>Free Query Builder / Database Abstraction Layer</long-description>
<tag name="author" line="0" description="Timothy J. Warren"/>
<tag name="copyright" line="0" description="Copyright (c) 2012 - 2014"/>
<tag name="link" line="0" description="https://github.com/aviat4ion/Query" link="https://github.com/aviat4ion/Query"/>
<tag name="license" line="0" description="http://philsturgeon.co.uk/code/dbad-license" link="http://philsturgeon.co.uk/code/dbad-license"/>
<tag name="package" line="0" description="Query"/>
</docblock>
<interface namespace="Query\Driver" line="24" package="Query\Drivers">
<name>SQL_Interface</name>
<full_name>\Query\Driver\SQL_Interface</full_name>
<docblock line="24">
<description>parent for database manipulation subclasses</description>
<long-description></long-description>
<tag name="package" line="24" description="Query"/>
<tag name="subpackage" line="24" description="Drivers"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="35" package="Query\Drivers">
<name>limit</name>
<full_name>\Query\Driver\SQL_Interface::limit()</full_name>
<docblock line="35">
<description>Get database specific sql for limit clause</description>
<long-description></long-description>
<tag name="abstract" line="35" description=""/>
<tag name="param" line="35" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="param" line="35" description="" type="int" variable="$limit">
<type>int</type>
</tag>
<tag name="param" line="35" description="" type="int" variable="$offset">
<type>int</type>
</tag>
<tag name="return" line="35" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$sql</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$limit</name>
<default></default>
<type>int</type>
</argument>
<argument line="0" by_reference="false">
<name>$offset</name>
<default>FALSE</default>
<type>int</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="43" package="Query\Drivers">
<name>explain</name>
<full_name>\Query\Driver\SQL_Interface::explain()</full_name>
<docblock line="43">
<description>Modify the query to get the query plan</description>
<long-description></long-description>
<tag name="param" line="43" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="return" line="43" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$sql</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="51" package="Query\Drivers">
<name>random</name>
<full_name>\Query\Driver\SQL_Interface::random()</full_name>
<docblock line="51">
<description>Get the sql for random ordering</description>
<long-description></long-description>
<tag name="abstract" line="51" description=""/>
<tag name="return" line="51" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="58" package="Query\Drivers">
<name>db_list</name>
<full_name>\Query\Driver\SQL_Interface::db_list()</full_name>
<docblock line="58">
<description>Returns sql to list other databases</description>
<long-description></long-description>
<tag name="return" line="58" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="65" package="Query\Drivers">
<name>table_list</name>
<full_name>\Query\Driver\SQL_Interface::table_list()</full_name>
<docblock line="65">
<description>Returns sql to list tables</description>
<long-description></long-description>
<tag name="return" line="65" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="72" package="Query\Drivers">
<name>system_table_list</name>
<full_name>\Query\Driver\SQL_Interface::system_table_list()</full_name>
<docblock line="72">
<description>Returns sql to list system tables</description>
<long-description></long-description>
<tag name="return" line="72" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="79" package="Query\Drivers">
<name>view_list</name>
<full_name>\Query\Driver\SQL_Interface::view_list()</full_name>
<docblock line="79">
<description>Returns sql to list views</description>
<long-description></long-description>
<tag name="return" line="79" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="86" package="Query\Drivers">
<name>trigger_list</name>
<full_name>\Query\Driver\SQL_Interface::trigger_list()</full_name>
<docblock line="86">
<description>Returns sql to list triggers</description>
<long-description></long-description>
<tag name="return" line="86" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="93" package="Query\Drivers">
<name>function_list</name>
<full_name>\Query\Driver\SQL_Interface::function_list()</full_name>
<docblock line="93">
<description>Return sql to list functions</description>
<long-description></long-description>
<tag name="return" line="93" description="" type="NULL">
<type>NULL</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="100" package="Query\Drivers">
<name>procedure_list</name>
<full_name>\Query\Driver\SQL_Interface::procedure_list()</full_name>
<docblock line="100">
<description>Return sql to list stored procedures</description>
<long-description></long-description>
<tag name="return" line="100" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="107" package="Query\Drivers">
<name>sequence_list</name>
<full_name>\Query\Driver\SQL_Interface::sequence_list()</full_name>
<docblock line="107">
<description>Return sql to list sequences</description>
<long-description></long-description>
<tag name="return" line="107" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="114" package="Query\Drivers">
<name>type_list</name>
<full_name>\Query\Driver\SQL_Interface::type_list()</full_name>
<docblock line="114">
<description>Return sql to list database field types</description>
<long-description></long-description>
<tag name="return" line="114" description="" type="string|array">
<type>string</type>
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="123" package="Query\Drivers">
<name>column_list</name>
<full_name>\Query\Driver\SQL_Interface::column_list()</full_name>
<docblock line="123">
<description>Get information about the columns in the
specified table</description>
<long-description></long-description>
<tag name="param" line="123" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="123" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
</method>
</interface>
<source>eJytVk1v1DAQPSe/Yg49tFW7gaonCqKFfgi0IJWCuCCtHGeSWE3s1B+FCPjvjO1kt6t2RRaxl3Vm570382xP9uXrru7SbH8/hX24dqh7Wvj1pUaMAXjjRFOghgzOmWU5MwhnubGacSuUhDnrUQ+oU+ZsrXSSfBatsnUP72fwlWmNMvzKVddrUdU2eTuuYJfvwdGz50dw6L+OQ14j5C0kSW1tZ15kWSVs7fIZV23G7gWzxySbjcX6bI7SYMyn9K4WjbFOV6gkgWbuNuOqwKzIWXE4JAdgx/gtqwg4cmVpmmVw+N8+aSpZi4Z0Bi+/nWtxj/okHS3vGHljoVQaitHclknRuYYFd43LecOMQTNaPFQNKwMoZwxGfhN6EdKiLr32zfV88W759DNNEy+fEPYK7UrYdMhFKTiYuyaU1IhWWCB9R45ReoCcsmHz4xN1wFqgiJAV7BDyYZhKgJ3A8iiqytLgENZI2yUHEh/K0qRzOe0VlE7GYxZYdr3AwUB5MJK8ujyb31zsnTzo64MqRNmDrRHuwiG2CirqdRXoGiZXPW3oYkph+IOohAylrdVwNeiNbmomC9WC0nSZBrqnDJ2iGal21+Q+BZwJctRtI4wFuoO4OllmJTlFpMgXnuTvKsTebEseMBP5TW8stv8kE6GLbdTuBX7fUsVDpnpFU6/yN3Q7tyJqo8aaxIh6rPHxy3y+QWFcTJMwVmksoNOKY+H0truyxE1UQ7qykm+99wNsmshyCpYCmwJs323U+0VvNNZv2ioCPqHoh4GQNAbaONdZrlwcD1w1rqVTIqR/DMnDICaHw8HdNKaWP07zIwrF2iLWV/jbv/IuZAGq9H4slm+NGf0z+APfNnoJ</source>
</file>
<file path="drivers/firebird/firebird_result.php" generated-path="drivers.firebird.firebird_result.html" hash="73c23a42ad0e301064660cbb977f994d" package="Query">
<docblock line="0">
<description>Query</description>
<long-description>Free Query Builder / Database Abstraction Layer</long-description>
<tag name="package" line="0" description="Query"/>
<tag name="author" line="0" description="Timothy J. Warren"/>
<tag name="copyright" line="0" description="Copyright (c) 2012 - 2014"/>
<tag name="link" line="0" description="https://github.com/aviat4ion/Query" link="https://github.com/aviat4ion/Query"/>
<tag name="license" line="0" description="http://philsturgeon.co.uk/code/dbad-license" link="http://philsturgeon.co.uk/code/dbad-license"/>
</docblock>
<class final="false" abstract="false" namespace="Query\Driver" line="25" package="Query\Drivers">
<extends>\PDOStatement</extends>
<name>Firebird_Result</name>
<full_name>\Query\Driver\Firebird_Result</full_name>
<docblock line="25">
<description>Firebird result class to emulate PDOStatement Class - only implements
data-fetching methods</description>
<long-description></long-description>
<tag name="package" line="25" description="Query"/>
<tag name="subpackage" line="25" description="Drivers"/>
</docblock>
<property static="false" visibility="private" line="32" namespace="Query\Driver" package="Query\Drivers">
<name>$statement</name>
<default></default>
<docblock line="32">
<description>Reference to fbird resource</description>
<long-description></long-description>
<tag name="var" line="32" description="" type="resource" variable="">
<type>resource</type>
</tag>
</docblock>
</property>
<property static="false" visibility="private" line="39" namespace="Query\Driver" package="Query\Drivers">
<name>$row</name>
<default></default>
<docblock line="39">
<description>Current row in result array</description>
<long-description></long-description>
<tag name="var" line="39" description="" type="int" variable="">
<type>int</type>
</tag>
</docblock>
</property>
<property static="false" visibility="private" line="46" namespace="Query\Driver" package="Query\Drivers">
<name>$result</name>
<default>array()</default>
<docblock line="46">
<description>Data pulled from query</description>
<long-description></long-description>
<tag name="param" line="46" description="" type="mixed" variable="">
<type>mixed</type>
</tag>
</docblock>
</property>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="54" package="Query\Drivers">
<name>__construct</name>
<full_name>\Query\Driver\Firebird_Result::__construct()</full_name>
<docblock line="54">
<description>Create the object by passing the resource for
the query</description>
<long-description></long-description>
<tag name="param" line="54" description="" type="resource" variable="$link">
<type>resource</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$link</name>
<default></default>
<type>resource</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="88" package="Query\Drivers">
<name>bindColumn</name>
<full_name>\Query\Driver\Firebird_Result::bindColumn()</full_name>
<docblock line="88">
<description>Invalidate method for data consistency</description>
<long-description></long-description>
<tag name="param" line="88" description="" type="mixed" variable="$column">
<type>mixed</type>
</tag>
<tag name="param" line="88" description="" type="mixed" variable="$param">
<type>mixed</type>
</tag>
<tag name="param" line="88" description="" type="int" variable="$type">
<type>int</type>
</tag>
<tag name="param" line="88" description="" type="mixed" variable="$maxlen">
<type>mixed</type>
</tag>
<tag name="param" line="88" description="" type="array" variable="$driverdata">
<type>array</type>
</tag>
<tag name="return" line="88" description="" type="NULL">
<type>NULL</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$column</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="true">
<name>$param</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$type</name>
<default>NULL</default>
<type>int</type>
</argument>
<argument line="0" by_reference="false">
<name>$maxlen</name>
<default>NULL</default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$driverdata</name>
<default>NULL</default>
<type>array</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="105" package="Query\Drivers">
<name>bindParam</name>
<full_name>\Query\Driver\Firebird_Result::bindParam()</full_name>
<docblock line="105">
<description>Invalidate method for data consistency</description>
<long-description></long-description>
<tag name="param" line="105" description="" type="mixed" variable="$parameter">
<type>mixed</type>
</tag>
<tag name="param" line="105" description="" type="mixed" variable="$variable">
<type>mixed</type>
</tag>
<tag name="param" line="105" description="" type="int" variable="$data_type">
<type>int</type>
</tag>
<tag name="param" line="105" description="" type="mixed" variable="$maxlen">
<type>mixed</type>
</tag>
<tag name="param" line="105" description="" type="array" variable="$driverdata">
<type>array</type>
</tag>
<tag name="return" line="105" description="" type="NULL">
<type>NULL</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$parameter</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="true">
<name>$variable</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$data_type</name>
<default>NULL</default>
<type>int</type>
</argument>
<argument line="0" by_reference="false">
<name>$maxlen</name>
<default>NULL</default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$driverdata</name>
<default>NULL</default>
<type>array</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="120" package="Query\Drivers">
<name>bindValue</name>
<full_name>\Query\Driver\Firebird_Result::bindValue()</full_name>
<docblock line="120">
<description>Invalidate method for data consistency</description>
<long-description></long-description>
<tag name="param" line="120" description="" type="mixed" variable="$parameter">
<type>mixed</type>
</tag>
<tag name="param" line="120" description="" type="mixed" variable="$variable">
<type>mixed</type>
</tag>
<tag name="param" line="120" description="" type="int" variable="$data_type">
<type>int</type>
</tag>
<tag name="return" line="120" description="" type="NULL">
<type>NULL</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$parameter</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$variable</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$data_type</name>
<default>NULL</default>
<type>int</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="133" package="Query\Drivers">
<name>execute</name>
<full_name>\Query\Driver\Firebird_Result::execute()</full_name>
<docblock line="133">
<description>Run a prepared statement query</description>
<long-description></long-description>
<tag name="param" line="133" description="" type="array" variable="$args">
<type>array</type>
</tag>
<tag name="return" line="133" description="" type="\Query\Driver\Firebird_Result">
<type link="Firebird_Result.html">\Query\Driver\Firebird_Result</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$args</name>
<default>NULL</default>
<type>array</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="156" package="Query\Drivers">
<name>fetch</name>
<full_name>\Query\Driver\Firebird_Result::fetch()</full_name>
<docblock line="156">
<description>Emulate PDO fetch public function</description>
<long-description></long-description>
<tag name="param" line="156" description="" type="int" variable="$fetch_style">
<type>int</type>
</tag>
<tag name="param" line="156" description="" type="mixed" variable="$cursor_orientation">
<type>mixed</type>
</tag>
<tag name="param" line="156" description="" type="mixed" variable="$cursor_offset">
<type>mixed</type>
</tag>
<tag name="return" line="156" description="" type="mixed">
<type>mixed</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$fetch_style</name>
<default>\PDO::FETCH_ASSOC</default>
<type>int</type>
</argument>
<argument line="0" by_reference="false">
<name>$cursor_orientation</name>
<default>\PDO::FETCH_ORI_NEXT</default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$cursor_offset</name>
<default>NULL</default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="201" package="Query\Drivers">
<name>fetchAll</name>
<full_name>\Query\Driver\Firebird_Result::fetchAll()</full_name>
<docblock line="201">
<description>Emulate PDO fetchAll public function</description>
<long-description></long-description>
<tag name="param" line="201" description="" type="int" variable="$fetch_style">
<type>int</type>
</tag>
<tag name="param" line="201" description="" type="mixed" variable="$statement">
<type>mixed</type>
</tag>
<tag name="param" line="201" description="" type="mixed" variable="$ctor_args">
<type>mixed</type>
</tag>
<tag name="return" line="201" description="" type="mixed">
<type>mixed</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$fetch_style</name>
<default>\PDO::FETCH_ASSOC</default>
<type>int</type>
</argument>
<argument line="0" by_reference="false">
<name>$statement</name>
<default>NULL</default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$ctor_args</name>
<default>NULL</default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="223" package="Query\Drivers">
<name>fetchColumn</name>
<full_name>\Query\Driver\Firebird_Result::fetchColumn()</full_name>
<docblock line="223">
<description>Emulate PDOStatement::fetchColumn</description>
<long-description></long-description>
<tag name="param" line="223" description="" type="int" variable="$column_num">
<type>int</type>
</tag>
<tag name="return" line="223" description="" type="mixed">
<type>mixed</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$column_num</name>
<default>0</default>
<type>int</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="238" package="Query\Drivers">
<name>fetchObject</name>
<full_name>\Query\Driver\Firebird_Result::fetchObject()</full_name>
<docblock line="238">
<description>Emulate PDOStatement::fetchObject, but only for the default use</description>
<long-description></long-description>
<tag name="param" line="238" description="" type="string" variable="$class_name">
<type>string</type>
</tag>
<tag name="param" line="238" description="" type="array" variable="$ctor_args">
<type>array</type>
</tag>
<tag name="return" line="238" description="" type="\Query\Driver\stdClass">
<type link="stdClass.html">\Query\Driver\stdClass</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$class_name</name>
<default>'stdClass'</default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$ctor_args</name>
<default>array()</default>
<type>array</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="250" package="Query\Drivers">
<name>rowCount</name>
<full_name>\Query\Driver\Firebird_Result::rowCount()</full_name>
<docblock line="250">
<description>Return the number of rows affected by the previous query</description>
<long-description></long-description>
<tag name="return" line="250" description="" type="int">
<type>int</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="270" package="Query\Drivers">
<name>errorCode</name>
<full_name>\Query\Driver\Firebird_Result::errorCode()</full_name>
<docblock line="270">
<description>Method to emulate PDOStatement-&gt;errorCode</description>
<long-description></long-description>
<tag name="return" line="270" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="282" package="Query\Drivers">
<name>errorInfo</name>
<full_name>\Query\Driver\Firebird_Result::errorInfo()</full_name>
<docblock line="282">
<description>Method to emulate PDO-&gt;errorInfo / PDOStatement-&gt;errorInfo</description>
<long-description></long-description>
<tag name="return" line="282" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
</class>
<source>eJztWFtv2zYUfpZ/xVlhNHbrRGnRp2TumrjJli5tuiTdBtSFQEmUrUWWNJJKYhT97zuHlGRRlpsOaNM9LC+xyMNzv3zkjz/l87znPnrUg0fwW8HFEn/Q72PBuVmAwyJOQi7AhZdMMZ9JDge+VIIFKs5SOGVLLspTL3IWXLEZd5yKF7xghZpnwnEu40Wm5kt4tQN/MCF4qneDLF+KeDZXzqT6BYNgCE93nzyFbfr3TNMlcXoFjjNXKpd7rjuL1bzwd4Js4bLrmKlnqIm7kpnEAU8lN/RIns/jRKpCzHiW4qGd4soNspC7oc/C7ZIYD7q9nuvC9lf76/VStuASnVL6cvpSxNdc7Pcqlx/HgvuxCEFwWSQKgoRJCSoDvigSpji8fXl2ofDHgqcKJnp3G7I0WUK8yBO9LIlRiKHZjrgK5nE6gwVHn4eyFRVYOUgWfrVoVJLafCO+Uso7N0rxW8XTUMLUUuZjr+eQFQ7yO+cRx4iimah6VBmUFSLgtK9pXlwzYa26PSdH2WRlX1Zs9xtcJwWliQKR3UCcVi7C3GFLm2ucqjZDPNNkRZkLeZEkPIRIZAv4W7ui5pIzwRawiG95uMbJiB0bwYOhpaHgRKPmHDL/Lx4o8JeQow8pCLRa2QtRJvQJWuyUXVP2KdUrJQofsxOiIjW15nlBlmLpFYEaaLphz/nYc5y+msdy+3ntRdRWb+839rg6pvR4jXk/oEju7R0fXU5+8Q4uLs4mwwYluXsM20+aSx0+cLBUGvY3ozMCmeEiU3DDIWApzLiJYpAVlK/m7JwHV7aT1DLnI/B5wApsMrng6BoMWG2WRPYcHmC4udB9SHvygeHnF1qcro0bhj5o0BnlHmgBEm7mPAWmkGeudKAwZ8k1uoiQWRzBYBpLr9KrdDU8fAhTtKRe94hdtTkejzskYnx0gJwb7EBIa3w71SXiaaEeZksWGC4jmJ4cHlwceSYyh6dnhxdDYmF42NF4/4GirPMctz5RRMgNunE3ArKqOMep5CKJZ7ZL7YnFp55m8pUbYF0qJ+k1S+KQ0sV0JyoJ7XGgnI4l9piguyKhH2RJsUg7NvRHcx0jAH2KSwfxgt0m3OKisxX6oW6BJvq0KTjOihTevDs93VCIfpyGE63UoFRuBA+NNiMjf0ynR5XQ6mslSa+U5duQt/8fjoL+4JjhHXvYhmPmJ3wtFsTbu5+AvCUWg5WaFJJKr1FDk/9D0xmaL3Py7ywpuOXkzT6+dx+eF9jYOwZH98itso2JmbRc0AJAG7zBb3lQKPQFncde3LDYdQ/CUHfhDl2Y1DtRLKSCRuCcqdbHK1I5jyNl+FI3sWd7PXxPcagieocwA5YkmuecCZJURBEBJkwbzGgaceYAURiTswh/zAozUzEXkAMkmGHWhjl0ScMy16jUGtWZ/q7hCMGbaj41Uco0QN08HOfCI8d5BkBsmUFUenBrZGIwNKaVQdDMvnG+HK1QdgkBWkFup4yuGzO3pVomXU0tKITMhJeJGJ3IKiYbiKIIcZmVexYGbWWcFjxoyh+vIblRlwaEORqEZ+cn3pujPy9HLUXGVgrDSUQxRsQVS0izElCMKOaYUwUvkRKhqOXAgibDGvbYpW9QCnL+lfMc6AZ5RRmnE6mB9X1OqExbSa5wHj9eIdMq+RuMITYsUryn6PNhxmW6RfcWTOlSS/gBrUATbUXfrxh/+LzS8iZu+76mDwjwWf49fLVnAJvBewNzORjCRuEaw/mIpq+0gess37x7bbEse8U1dWP5GaPajEMeMaSxeH2RVqUfquI0uPNea/MAm9wXlOdd9Vk30q6yxD7mrY2DO0sSNbu7Kmu5FeCohTXLrk+t3L5nWVeHMjrrnaApYZXKxM66KOggtm91RGW1Xv19X9GtnxT29rQ9kxrsr3VeA7W9tFj8uwDZUJ3Oj3crh3f4tVV4uogaif++wefD9/PTmW4qI33x1bdewovUCMsaB5y6bS/iVKbe2tcPPR69TnWg7+4qkCrU70+f87NRadBgP96qzm1ZKV8muI0QNwYBG+rwW0NHo4IeJMXC54ImEwZbAosiNArbg7+sIN11nBWyDSpLIxqPUS0XIbcJPYAMGqknV88BlRyPlldvLD8jzOvQqgq25Am9O2ldaBIus4KeXMqxV4oYj2FXP19YrxptYLnpgWON7o63jtou/dzTggZdk+Rbw7zX5j614Vl1+zkXIhOTLORrwTT1sukCUB0b2GlcxhO3A735PawrjTpJowzcLnNpZ83c+m11k7V0qk5fsm6Vvk1znf5Czqwt/B5Y8N40gF1qCniKbuNyZjz1iR7hj9KQUj2qbmIme3bwvvMPPXItDA==</source>
</file>
<file path="drivers/firebird/firebird_util.php" generated-path="drivers.firebird.firebird_util.html" hash="12a36c91b1aa8d2ecf0c53ff6e1615e2" package="Query">
<docblock line="0">
<description>Query</description>
<long-description>Free Query Builder / Database Abstraction Layer</long-description>
<tag name="package" line="0" description="Query"/>
<tag name="author" line="0" description="Timothy J. Warren"/>
<tag name="copyright" line="0" description="Copyright (c) 2012 - 2014"/>
<tag name="link" line="0" description="https://github.com/aviat4ion/Query" link="https://github.com/aviat4ion/Query"/>
<tag name="license" line="0" description="http://philsturgeon.co.uk/code/dbad-license" link="http://philsturgeon.co.uk/code/dbad-license"/>
</docblock>
<class final="false" abstract="false" namespace="Query\Driver" line="27" package="Query\Drivers">
<extends>\Query\Driver\DB_Util</extends>
<name>Firebird_Util</name>
<full_name>\Query\Driver\Firebird_Util</full_name>
<docblock line="27">
<description>Firebird-specific backup, import and creation methods</description>
<long-description></long-description>
<tag name="package" line="27" description="Query"/>
<tag name="subpackage" line="27" description="Drivers"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="34" package="Query\Drivers">
<name>backup_structure</name>
<full_name>\Query\Driver\Firebird_Util::backup_structure()</full_name>
<docblock line="34">
<description>Create an SQL backup file for the current database's structure</description>
<long-description></long-description>
<tag name="codeCoverageIgnore" line="34" description=""/>
<tag name="return" line="34" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="50" package="Query\Drivers">
<name>backup_data</name>
<full_name>\Query\Driver\Firebird_Util::backup_data()</full_name>
<docblock line="50">
<description>Create an SQL backup file for the current database's data</description>
<long-description></long-description>
<tag name="codeCoverageIgnore" line="50" description=""/>
<tag name="param" line="50" description="" type="array" variable="$exclude">
<type>array</type>
</tag>
<tag name="param" line="50" description="" type="bool" variable="$system_tables">
<type>bool</type>
</tag>
<tag name="return" line="50" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$exclude</name>
<default>array()</default>
<type>array</type>
</argument>
<argument line="0" by_reference="false">
<name>$system_tables</name>
<default>FALSE</default>
<type>bool</type>
</argument>
</method>
<method final="false" static="false" visibility="public" line="27">
<name>get_system_tables</name>
<docblock>
<description/>
<long-description/>
<tag name="magic" line="27"/>
<tag name="return" line="27" type="">
<type/>
</tag>
<tag name="method" line="27" description="" method_name="get_system_tables"/>
</docblock>
</method>
<method final="false" static="false" visibility="public" line="27">
<name>get_tables</name>
<docblock>
<description/>
<long-description/>
<tag name="magic" line="27"/>
<tag name="return" line="27" type="">
<type/>
</tag>
<tag name="method" line="27" description="" method_name="get_tables"/>
</docblock>
</method>
<method final="false" static="false" visibility="public" line="27">
<name>query</name>
<docblock>
<description/>
<long-description/>
<tag name="magic" line="27"/>
<tag name="return" line="27" type="">
<type/>
</tag>
<tag name="method" line="27" description="" method_name="query"/>
</docblock>
</method>
</class>
<markers>
<todo line="36">Implement Backup structure function</todo>
</markers>
<source>eJytVt9v2zYQfpb+ipthTFLhWG3Rp7ju4thO58Gxl9jZHprCoCTa4iKJCkklNYr87zuSkuwE2YBh9Yul4919990v6uMvZVq64Zs3LryBq4qKPT7o5wtBqRXAecWyhAoIYUIUiYikMIqkEiRWjBcwJ3sqaquzksR3ZEcdp/EFZ6RSKReOs2Y5V+kefuvDn0QIWpjTmJd7wXapcsbNE/hxAO/fvnsPJ/rvg9HLWHEHjpMqVcrTMNwxlVZRP+Z5SB4YUR8wkvCAmbGYFpJafVQvU5ZJVYkd5QUa9au7MOYJDZOIJCe1MhqGrhuGcPLDfq5bkJxKTEqdy9uJYA9UDNwm5RdM0IiJ5ESWNGZbFkOEGazKHrC85EIBKRKIBSUm1TnFVCbyRbLhwFtWUSO0SNKIrR1g1skedlRt5F4qmm+wmhmVfvC60munPPqLxgruNaKPPcCKHXTlfRaY7MUZkbLltLlRLAP6TdEikTA5t+/fXdfR5B30OtbEKHKE1dW8Zg5bllHYcgEqpRBXulMUJHXneRIQtYqxltS4ONN1HHOkiqRnu4I3ckFRpwAboxaFrlNWERYbtlVhW9ciblqPyNX57joONsF6OVnCLC8zmmv8cxtbq9n6QO0ayfMGrvOk2f3YFvp/2dKP2vrfk1USQfK69F36Lc6q5NlJxHmGdT7umv+cZR2J3zgfGiw/6L3wOrwYzVfTQxkmVFGRs4LCY8riFKwWKA4VTqzjsK3/3AEMh7C+vtEujA+n28gtvU1OcQv4XZUyefLplVnAiA5njTDA0mJtHYdmBvaF51csrIElccEyZAG8UqZKtdmeV5DwwlPwSAplucBPQPNS7ds8Bf/II2Fb5G6FvbZoB9wuwpUV0rvP0EY3pw3mM7VR6HKYxqEE82rnGjVQogWNZyAS2R2CqL2tpvPpeK331/XyEjpeH+ufo03Q9zp6DFBTHGfG7guzKOwp4m1qDfw7+bSlKk5HWebf/j5Znp5eTNfjXzej1Wo5DkzgphdMskiS6PJrCqb32faQVGDS5k9b4IEf86pQfoMWwEd4F0DMC8WKiraOFySy48OzKi/A7GyIzBJUesHpszu6l8C3Na6QCgR/NFSslaZyZiujVVvML2+/1gy6DC8ZoTZo11bRP7Crp1v7t4o4VCjQ20dqlbYwTep0ZdCXro0tjqNf2/54IFmFjWhULIhGuao4gtgz7aGgNKGJJqv2JTVa2IZ6nEuOxqoH3vXkvOsFOFdDaIazRXwOmZPSt7R+NnVH43uN5+mhsnG8buTp9vGeKT25LaVNfc9g380Wq+n1GmaL9fJF14GP73hnZrjhfK/T62h3dWn0eQB/jOY30xX4R2q9BrPvBQNv4B5ncXEznzeSo8p9+Wp6to3KRGuDPZ64/hA6t8VtsZqucR2NFqvReD1bLga3RaeFR4UO4h85D/ooGy8vL2frQaed5HrHHrk3F82T/laZ4ucBduW2uXIrvGL7+En3N4MI6z4=</source>
</file>
<file path="classes/query_builder.php" generated-path="classes.query_builder.html" hash="26661145a768d4b7bf17eed7ee862ffc" package="Query">
<docblock line="0">
<description>Query</description>
<long-description>Free Query Builder / Database Abstraction Layer</long-description>
<tag name="package" line="0" description="Query"/>
<tag name="author" line="0" description="Timothy J. Warren"/>
<tag name="copyright" line="0" description="Copyright (c) 2012 - 2014"/>
<tag name="link" line="0" description="https://github.com/aviat4ion/Query" link="https://github.com/aviat4ion/Query"/>
<tag name="license" line="0" description="http://philsturgeon.co.uk/code/dbad-license" link="http://philsturgeon.co.uk/code/dbad-license"/>
</docblock>
<class final="false" abstract="false" namespace="Query" line="25" package="Query\Query_Builder">
<extends/>
<implements>\Query\Query_Builder_Interface</implements>
<name>Query_Builder</name>
<full_name>\Query\Query_Builder</full_name>
<docblock line="25">
<description>Convienience class for creating sql queries - also the class that
instantiates the specific db driver</description>
<long-description></long-description>
<tag name="package" line="25" description="Query"/>
<tag name="subpackage" line="25" description="Query_Builder"/>
</docblock>
<property static="false" visibility="protected" line="35" namespace="Query" package="Query\Query_Builder">
<name>$select_string</name>
<default>''</default>
<docblock line="35">
<description>Compiled 'select' clause</description>
<long-description></long-description>
<tag name="var" line="35" description="&lt;p&gt;string&lt;/p&gt;" type="\Query\type" variable="">
<type link="type.html">\Query\type</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="41" namespace="Query" package="Query\Query_Builder">
<name>$from_string</name>
<default></default>
<docblock line="41">
<description>Compiled 'from' clause</description>
<long-description></long-description>
<tag name="var" line="41" description="&lt;p&gt;string&lt;/p&gt;" type="\Query\type" variable="">
<type link="type.html">\Query\type</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="47" namespace="Query" package="Query\Query_Builder">
<name>$set_string</name>
<default></default>
<docblock line="47">
<description>Compiled arguments for insert / update</description>
<long-description></long-description>
<tag name="var" line="47" description="" type="string" variable="">
<type>string</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="53" namespace="Query" package="Query\Query_Builder">
<name>$order_string</name>
<default></default>
<docblock line="53">
<description>Order by clause</description>
<long-description></long-description>
<tag name="var" line="53" description="" type="string" variable="">
<type>string</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="59" namespace="Query" package="Query\Query_Builder">
<name>$group_string</name>
<default></default>
<docblock line="59">
<description>Group by clause</description>
<long-description></long-description>
<tag name="var" line="59" description="" type="string" variable="">
<type>string</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="69" namespace="Query" package="Query\Query_Builder">
<name>$set_array_keys</name>
<default>array()</default>
<docblock line="69">
<description>Keys for insert/update statement</description>
<long-description></long-description>
<tag name="var" line="69" description="" type="array" variable="">
<type>array</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="75" namespace="Query" package="Query\Query_Builder">
<name>$order_array</name>
<default>array()</default>
<docblock line="75">
<description>Key/val pairs for order by clause</description>
<long-description></long-description>
<tag name="var" line="75" description="" type="array" variable="">
<type>array</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="81" namespace="Query" package="Query\Query_Builder">
<name>$group_array</name>
<default>array()</default>
<docblock line="81">
<description>Key/val pairs for group by clause</description>
<long-description></long-description>
<tag name="var" line="81" description="" type="array" variable="">
<type>array</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="91" namespace="Query" package="Query\Query_Builder">
<name>$values</name>
<default>array()</default>
<docblock line="91">
<description>Values to apply to prepared statements</description>
<long-description></long-description>
<tag name="var" line="91" description="" type="array" variable="">
<type>array</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="97" namespace="Query" package="Query\Query_Builder">
<name>$where_values</name>
<default>array()</default>
<docblock line="97">
<description>Values to apply to where clauses in prepared statements</description>
<long-description></long-description>
<tag name="var" line="97" description="" type="array" variable="">
<type>array</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="103" namespace="Query" package="Query\Query_Builder">
<name>$limit</name>
<default></default>
<docblock line="103">
<description>Value for limit string</description>
<long-description></long-description>
<tag name="var" line="103" description="&lt;p&gt;string&lt;/p&gt;" type="\Query\type" variable="">
<type link="type.html">\Query\type</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="109" namespace="Query" package="Query\Query_Builder">
<name>$offset</name>
<default></default>
<docblock line="109">
<description>Value for offset in limit string</description>
<long-description></long-description>
<tag name="var" line="109" description="" type="int" variable="">
<type>int</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="124" namespace="Query" package="Query\Query_Builder">
<name>$query_map</name>
<default>array()</default>
<docblock line="124">
<description>Query component order mapping
for complex select queries</description>
<long-description>Format:
array(
'type' =&gt; 'where',
'conjunction' =&gt; ' AND ',
'string' =&gt; 'k=?'
)</long-description>
<tag name="var" line="124" description="" type="array" variable="">
<type>array</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="130" namespace="Query" package="Query\Query_Builder">
<name>$having_map</name>
<default></default>
<docblock line="130">
<description>Map for having clause</description>
<long-description></long-description>
<tag name="var" line="130" description="" type="array" variable="">
<type>array</type>
</tag>
</docblock>
</property>
<property static="false" visibility="public" line="136" namespace="Query" package="Query\Query_Builder">
<name>$conn_name</name>
<default>""</default>
<docblock line="136">
<description>Convenience property for connection management</description>
<long-description></long-description>
<tag name="var" line="136" description="" type="string" variable="">
<type>string</type>
</tag>
</docblock>
</property>
<property static="false" visibility="public" line="142" namespace="Query" package="Query\Query_Builder">
<name>$queries</name>
<default></default>
<docblock line="142">
<description>List of queries executed</description>
<long-description></long-description>
<tag name="var" line="142" description="" type="array" variable="">
<type>array</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="148" namespace="Query" package="Query\Query_Builder">
<name>$explain</name>
<default></default>
<docblock line="148">
<description>Whether to do only an explain on the query</description>
<long-description></long-description>
<tag name="var" line="148" description="" type="bool" variable="">
<type>bool</type>
</tag>
</docblock>
</property>
<property static="false" visibility="public" line="154" namespace="Query" package="Query\Query_Builder">
<name>$db</name>
<default></default>
<docblock line="154">
<description>The current database driver</description>
<long-description></long-description>
<tag name="var" line="154" description="" type="\Query\Driver_Interface" variable="">
<type link="Driver_Interface.html">\Query\Driver_Interface</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="160" namespace="Query" package="Query\Query_Builder">
<name>$parser</name>
<default></default>
<docblock line="160">
<description>Query parser class instance</description>
<long-description></long-description>
<tag name="var" line="160" description="" type="\Query\Query_Parser" variable="">
<type link="Query_Parser.html">\Query\Query_Parser</type>
</tag>
</docblock>
</property>
<property static="false" visibility="public" line="166" namespace="Query" package="Query\Query_Builder">
<name>$util</name>
<default></default>
<docblock line="166">
<description>Alias to $this-&gt;db-&gt;util</description>
<long-description></long-description>
<tag name="var" line="166" description="" type="\Query\DB_Util" variable="">
<type link="DB_Util.html">\Query\DB_Util</type>
</tag>
</docblock>
</property>
<property static="false" visibility="public" line="172" namespace="Query" package="Query\Query_Builder">
<name>$sql</name>
<default></default>
<docblock line="172">
<description>Alias to $this-&gt;db-&gt;sql</description>
<long-description></long-description>
<tag name="var" line="172" description="" type="\Query\SQL_Interface" variable="">
<type link="SQL_Interface.html">\Query\SQL_Interface</type>
</tag>
</docblock>
</property>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="183" package="Query\Query_Builder">
<name>__construct</name>
<full_name>\Query\Query_Builder::__construct()</full_name>
<docblock line="183">
<description>Constructor</description>
<long-description></long-description>
<tag name="param" line="183" description="" type="\Query\Driver\Driver_Interface" variable="$db">
<type link="Driver_Interface.html">\Query\Driver\Driver_Interface</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$db</name>
<default></default>
<type>\Query\Driver\Driver_Interface</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="202" package="Query\Query_Builder">
<name>__destruct</name>
<full_name>\Query\Query_Builder::__destruct()</full_name>
<docblock line="202">
<description>Destructor</description>
<long-description></long-description>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="protected" namespace="Query" line="218" package="Query\Query_Builder">
<name>_select</name>
<full_name>\Query\Query_Builder::_select()</full_name>
<docblock line="218">
<description>Method to simplify select_ methods</description>
<long-description></long-description>
<tag name="param" line="218" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="218" description="" type="string" variable="$as">
<type>string</type>
</tag>
<tag name="return" line="218" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$as</name>
<default>FALSE</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="236" package="Query\Query_Builder">
<name>select</name>
<full_name>\Query\Query_Builder::select()</full_name>
<docblock line="236">
<description>Specifies rows to select in a query</description>
<long-description></long-description>
<tag name="param" line="236" description="" type="string" variable="$fields">
<type>string</type>
</tag>
<tag name="return" line="236" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$fields</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="282" package="Query\Query_Builder">
<name>select_max</name>
<full_name>\Query\Query_Builder::select_max()</full_name>
<docblock line="282">
<description>Selects the maximum value of a field from a query</description>
<long-description></long-description>
<tag name="param" line="282" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="282" description="" type="string" variable="$as">
<type>string</type>
</tag>
<tag name="return" line="282" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$as</name>
<default>FALSE</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="298" package="Query\Query_Builder">
<name>select_min</name>
<full_name>\Query\Query_Builder::select_min()</full_name>
<docblock line="298">
<description>Selects the minimum value of a field from a query</description>
<long-description></long-description>
<tag name="param" line="298" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="298" description="" type="string" variable="$as">
<type>string</type>
</tag>
<tag name="return" line="298" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$as</name>
<default>FALSE</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="314" package="Query\Query_Builder">
<name>select_avg</name>
<full_name>\Query\Query_Builder::select_avg()</full_name>
<docblock line="314">
<description>Selects the average value of a field from a query</description>
<long-description></long-description>
<tag name="param" line="314" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="314" description="" type="string" variable="$as">
<type>string</type>
</tag>
<tag name="return" line="314" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$as</name>
<default>FALSE</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="330" package="Query\Query_Builder">
<name>select_sum</name>
<full_name>\Query\Query_Builder::select_sum()</full_name>
<docblock line="330">
<description>Selects the sum of a field from a query</description>
<long-description></long-description>
<tag name="param" line="330" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="330" description="" type="string" variable="$as">
<type>string</type>
</tag>
<tag name="return" line="330" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$as</name>
<default>FALSE</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="344" package="Query\Query_Builder">
<name>distinct</name>
<full_name>\Query\Query_Builder::distinct()</full_name>
<docblock line="344">
<description>Adds the 'distinct' keyword to a query</description>
<long-description></long-description>
<tag name="return" line="344" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="358" package="Query\Query_Builder">
<name>explain</name>
<full_name>\Query\Query_Builder::explain()</full_name>
<docblock line="358">
<description>Tell the database to give you the query plan instead of result set</description>
<long-description></long-description>
<tag name="return" line="358" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="372" package="Query\Query_Builder">
<name>from</name>
<full_name>\Query\Query_Builder::from()</full_name>
<docblock line="372">
<description>Specify the database table to select from</description>
<long-description></long-description>
<tag name="param" line="372" description="" type="string" variable="$tblname">
<type>string</type>
</tag>
<tag name="return" line="372" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$tblname</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="protected" namespace="Query" line="402" package="Query\Query_Builder">
<name>_like</name>
<full_name>\Query\Query_Builder::_like()</full_name>
<docblock line="402">
<description>Simplify 'like' methods</description>
<long-description></long-description>
<tag name="param" line="402" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="402" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="402" description="" type="string" variable="$pos">
<type>string</type>
</tag>
<tag name="param" line="402" description="" type="string" variable="$like">
<type>string</type>
</tag>
<tag name="param" line="402" description="" type="string" variable="$conj">
<type>string</type>
</tag>
<tag name="return" line="402" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$pos</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$like</name>
<default>'LIKE'</default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$conj</name>
<default>'AND'</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="441" package="Query\Query_Builder">
<name>like</name>
<full_name>\Query\Query_Builder::like()</full_name>
<docblock line="441">
<description>Creates a Like clause in the sql statement</description>
<long-description></long-description>
<tag name="param" line="441" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="441" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="441" description="" type="string" variable="$pos">
<type>string</type>
</tag>
<tag name="return" line="441" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$pos</name>
<default>'both'</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="456" package="Query\Query_Builder">
<name>or_like</name>
<full_name>\Query\Query_Builder::or_like()</full_name>
<docblock line="456">
<description>Generates an OR Like clause</description>
<long-description></long-description>
<tag name="param" line="456" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="456" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="456" description="" type="string" variable="$pos">
<type>string</type>
</tag>
<tag name="return" line="456" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$pos</name>
<default>'both'</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="471" package="Query\Query_Builder">
<name>not_like</name>
<full_name>\Query\Query_Builder::not_like()</full_name>
<docblock line="471">
<description>Generates a NOT LIKE clause</description>
<long-description></long-description>
<tag name="param" line="471" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="471" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="471" description="" type="string" variable="$pos">
<type>string</type>
</tag>
<tag name="return" line="471" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$pos</name>
<default>'both'</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="486" package="Query\Query_Builder">
<name>or_not_like</name>
<full_name>\Query\Query_Builder::or_not_like()</full_name>
<docblock line="486">
<description>Generates a OR NOT LIKE clause</description>
<long-description></long-description>
<tag name="param" line="486" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="486" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="486" description="" type="string" variable="$pos">
<type>string</type>
</tag>
<tag name="return" line="486" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$pos</name>
<default>'both'</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="protected" namespace="Query" line="503" package="Query\Query_Builder">
<name>_having</name>
<full_name>\Query\Query_Builder::_having()</full_name>
<docblock line="503">
<description>Simplify building having clauses</description>
<long-description></long-description>
<tag name="param" line="503" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="503" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="503" description="" type="string" variable="$conj">
<type>string</type>
</tag>
<tag name="return" line="503" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$key</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default>array()</default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$conj</name>
<default>'AND'</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="538" package="Query\Query_Builder">
<name>having</name>
<full_name>\Query\Query_Builder::having()</full_name>
<docblock line="538">
<description>Generates a 'Having' clause</description>
<long-description></long-description>
<tag name="param" line="538" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="538" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="538" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$key</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default>array()</default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="552" package="Query\Query_Builder">
<name>or_having</name>
<full_name>\Query\Query_Builder::or_having()</full_name>
<docblock line="552">
<description>Generates a 'Having' clause prefixed with 'OR'</description>
<long-description></long-description>
<tag name="param" line="552" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="552" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="552" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$key</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default>array()</default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="protected" namespace="Query" line="568" package="Query\Query_Builder">
<name>_where</name>
<full_name>\Query\Query_Builder::_where()</full_name>
<docblock line="568">
<description>Do all the repeditive stuff for where/having type methods</description>
<long-description></long-description>
<tag name="param" line="568" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="568" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="568" description="" type="array">
<type>array</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$key</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default>array()</default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="protected" namespace="Query" line="601" package="Query\Query_Builder">
<name>_where_string</name>
<full_name>\Query\Query_Builder::_where_string()</full_name>
<docblock line="601">
<description>Simplify generating where string</description>
<long-description></long-description>
<tag name="param" line="601" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="601" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="601" description="" type="string" variable="$conj">
<type>string</type>
</tag>
<tag name="return" line="601" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$key</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default>array()</default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$conj</name>
<default>'AND'</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="protected" namespace="Query" line="651" package="Query\Query_Builder">
<name>_where_in</name>
<full_name>\Query\Query_Builder::_where_in()</full_name>
<docblock line="651">
<description>Simplify where_in methods</description>
<long-description></long-description>
<tag name="param" line="651" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="651" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="651" description="&lt;ul&gt;&#10;&lt;li&gt;The (not) in fragment&lt;/li&gt;&#10;&lt;/ul&gt;" type="string" variable="$in">
<type>string</type>
</tag>
<tag name="param" line="651" description="&lt;ul&gt;&#10;&lt;li&gt;The where in conjunction&lt;/li&gt;&#10;&lt;/ul&gt;" type="string" variable="$conj">
<type>string</type>
</tag>
<tag name="return" line="651" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$key</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default>array()</default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$in</name>
<default>'IN'</default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$conj</name>
<default>'AND'</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="681" package="Query\Query_Builder">
<name>where</name>
<full_name>\Query\Query_Builder::where()</full_name>
<docblock line="681">
<description>Specify condition(s) in the where clause of a query
Note: this function works with key / value, or a
passed array with key / value pairs</description>
<long-description></long-description>
<tag name="param" line="681" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="681" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="681" description="" type="mixed" variable="$escape">
<type>mixed</type>
</tag>
<tag name="return" line="681" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$key</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default>array()</default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$escape</name>
<default>NULL</default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="695" package="Query\Query_Builder">
<name>or_where</name>
<full_name>\Query\Query_Builder::or_where()</full_name>
<docblock line="695">
<description>Where clause prefixed with "OR"</description>
<long-description></long-description>
<tag name="param" line="695" description="" type="string" variable="$key">
<type>string</type>
</tag>
<tag name="param" line="695" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="695" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$key</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default>array()</default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="709" package="Query\Query_Builder">
<name>where_in</name>
<full_name>\Query\Query_Builder::where_in()</full_name>
<docblock line="709">
<description>Where clause with 'IN' statement</description>
<long-description></long-description>
<tag name="param" line="709" description="" type="mixed" variable="$field">
<type>mixed</type>
</tag>
<tag name="param" line="709" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="709" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default>array()</default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="723" package="Query\Query_Builder">
<name>or_where_in</name>
<full_name>\Query\Query_Builder::or_where_in()</full_name>
<docblock line="723">
<description>Where in statement prefixed with "or"</description>
<long-description></long-description>
<tag name="param" line="723" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="723" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="723" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default>array()</default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="737" package="Query\Query_Builder">
<name>where_not_in</name>
<full_name>\Query\Query_Builder::where_not_in()</full_name>
<docblock line="737">
<description>WHERE NOT IN (FOO) clause</description>
<long-description></long-description>
<tag name="param" line="737" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="737" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="737" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default>array()</default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="751" package="Query\Query_Builder">
<name>or_where_not_in</name>
<full_name>\Query\Query_Builder::or_where_not_in()</full_name>
<docblock line="751">
<description>OR WHERE NOT IN (FOO) clause</description>
<long-description></long-description>
<tag name="param" line="751" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="751" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="751" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default>array()</default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="767" package="Query\Query_Builder">
<name>set</name>
<full_name>\Query\Query_Builder::set()</full_name>
<docblock line="767">
<description>Sets values for inserts / updates / deletes</description>
<long-description></long-description>
<tag name="param" line="767" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="767" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="767" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$key</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default>NULL</default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="806" package="Query\Query_Builder">
<name>join</name>
<full_name>\Query\Query_Builder::join()</full_name>
<docblock line="806">
<description>Creates a join phrase in a compiled query</description>
<long-description></long-description>
<tag name="param" line="806" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="806" description="" type="string" variable="$condition">
<type>string</type>
</tag>
<tag name="param" line="806" description="" type="string" variable="$type">
<type>string</type>
</tag>
<tag name="return" line="806" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$condition</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$type</name>
<default>''</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="831" package="Query\Query_Builder">
<name>group_by</name>
<full_name>\Query\Query_Builder::group_by()</full_name>
<docblock line="831">
<description>Group the results by the selected field(s)</description>
<long-description></long-description>
<tag name="param" line="831" description="" type="mixed" variable="$field">
<type>mixed</type>
</tag>
<tag name="return" line="831" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="857" package="Query\Query_Builder">
<name>order_by</name>
<full_name>\Query\Query_Builder::order_by()</full_name>
<docblock line="857">
<description>Order the results by the selected field(s)</description>
<long-description></long-description>
<tag name="param" line="857" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="857" description="" type="string" variable="$type">
<type>string</type>
</tag>
<tag name="return" line="857" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$type</name>
<default>""</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="894" package="Query\Query_Builder">
<name>limit</name>
<full_name>\Query\Query_Builder::limit()</full_name>
<docblock line="894">
<description>Set a limit on the current sql statement</description>
<long-description></long-description>
<tag name="param" line="894" description="" type="int" variable="$limit">
<type>int</type>
</tag>
<tag name="param" line="894" description="" type="int" variable="$offset">
<type>int</type>
</tag>
<tag name="return" line="894" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$limit</name>
<default></default>
<type>int</type>
</argument>
<argument line="0" by_reference="false">
<name>$offset</name>
<default>FALSE</default>
<type>int</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="911" package="Query\Query_Builder">
<name>group_start</name>
<full_name>\Query\Query_Builder::group_start()</full_name>
<docblock line="911">
<description>Adds a paren to the current query for query grouping</description>
<long-description></long-description>
<tag name="return" line="911" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="928" package="Query\Query_Builder">
<name>or_group_start</name>
<full_name>\Query\Query_Builder::or_group_start()</full_name>
<docblock line="928">
<description>Adds a paren to the current query for query grouping,
prefixed with 'OR'</description>
<long-description></long-description>
<tag name="return" line="928" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="943" package="Query\Query_Builder">
<name>or_not_group_start</name>
<full_name>\Query\Query_Builder::or_not_group_start()</full_name>
<docblock line="943">
<description>Adds a paren to the current query for query grouping,
prefixed with 'OR NOT'</description>
<long-description></long-description>
<tag name="return" line="943" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="957" package="Query\Query_Builder">
<name>group_end</name>
<full_name>\Query\Query_Builder::group_end()</full_name>
<docblock line="957">
<description>Ends a query group</description>
<long-description></long-description>
<tag name="return" line="957" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="977" package="Query\Query_Builder">
<name>get</name>
<full_name>\Query\Query_Builder::get()</full_name>
<docblock line="977">
<description>Select and retrieve all records from the current table, and/or
execute current compiled query</description>
<long-description></long-description>
<tag name="param" line="977" description="" type="" variable="$table"/>
<tag name="param" line="977" description="" type="int" variable="$limit">
<type>int</type>
</tag>
<tag name="param" line="977" description="" type="int" variable="$offset">
<type>int</type>
</tag>
<tag name="return" line="977" description="" type="\Query\PDOStatement">
<type link="PDOStatement.html">\Query\PDOStatement</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default>''</default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$limit</name>
<default>FALSE</default>
<type>int</type>
</argument>
<argument line="0" by_reference="false">
<name>$offset</name>
<default>FALSE</default>
<type>int</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="1005" package="Query\Query_Builder">
<name>get_where</name>
<full_name>\Query\Query_Builder::get_where()</full_name>
<docblock line="1005">
<description>Convience method for get() with a where clause</description>
<long-description></long-description>
<tag name="param" line="1005" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1005" description="" type="array" variable="$where">
<type>array</type>
</tag>
<tag name="param" line="1005" description="" type="int" variable="$limit">
<type>int</type>
</tag>
<tag name="param" line="1005" description="" type="int" variable="$offset">
<type>int</type>
</tag>
<tag name="return" line="1005" description="" type="\Query\PDOStatement">
<type link="PDOStatement.html">\Query\PDOStatement</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$where</name>
<default>array()</default>
<type>array</type>
</argument>
<argument line="0" by_reference="false">
<name>$limit</name>
<default>FALSE</default>
<type>int</type>
</argument>
<argument line="0" by_reference="false">
<name>$offset</name>
<default>FALSE</default>
<type>int</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="1022" package="Query\Query_Builder">
<name>count_all</name>
<full_name>\Query\Query_Builder::count_all()</full_name>
<docblock line="1022">
<description>Retreive the number of rows in the selected table</description>
<long-description></long-description>
<tag name="param" line="1022" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="1022" description="" type="int">
<type>int</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="1038" package="Query\Query_Builder">
<name>count_all_results</name>
<full_name>\Query\Query_Builder::count_all_results()</full_name>
<docblock line="1038">
<description>Retrieve the number of results for the generated query - used
in place of the get() method</description>
<long-description></long-description>
<tag name="param" line="1038" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="1038" description="" type="int">
<type>int</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default>''</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="1063" package="Query\Query_Builder">
<name>insert</name>
<full_name>\Query\Query_Builder::insert()</full_name>
<docblock line="1063">
<description>Creates an insert clause, and executes it</description>
<long-description></long-description>
<tag name="param" line="1063" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1063" description="" type="mixed" variable="$data">
<type>mixed</type>
</tag>
<tag name="return" line="1063" description="" type="\Query\PDOStatement">
<type link="PDOStatement.html">\Query\PDOStatement</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$data</name>
<default>array()</default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="1083" package="Query\Query_Builder">
<name>insert_batch</name>
<full_name>\Query\Query_Builder::insert_batch()</full_name>
<docblock line="1083">
<description>Creates and executes a batch insertion query</description>
<long-description></long-description>
<tag name="param" line="1083" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1083" description="" type="array" variable="$data">
<type>array</type>
</tag>
<tag name="return" line="1083" description="" type="\Query\PDOStatement">
<type link="PDOStatement.html">\Query\PDOStatement</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$data</name>
<default>array()</default>
<type>array</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="1105" package="Query\Query_Builder">
<name>update</name>
<full_name>\Query\Query_Builder::update()</full_name>
<docblock line="1105">
<description>Creates an update clause, and executes it</description>
<long-description></long-description>
<tag name="param" line="1105" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1105" description="" type="mixed" variable="$data">
<type>mixed</type>
</tag>
<tag name="return" line="1105" description="" type="\Query\PDOStatement">
<type link="PDOStatement.html">\Query\PDOStatement</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$data</name>
<default>array()</default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="1125" package="Query\Query_Builder">
<name>delete</name>
<full_name>\Query\Query_Builder::delete()</full_name>
<docblock line="1125">
<description>Deletes data from a table</description>
<long-description></long-description>
<tag name="param" line="1125" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1125" description="" type="mixed" variable="$where">
<type>mixed</type>
</tag>
<tag name="return" line="1125" description="" type="\Query\PDOStatement">
<type link="PDOStatement.html">\Query\PDOStatement</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$where</name>
<default>''</default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="protected" namespace="Query" line="1148" package="Query\Query_Builder">
<name>_get_compile</name>
<full_name>\Query\Query_Builder::_get_compile()</full_name>
<docblock line="1148">
<description>Helper function for returning sql strings</description>
<long-description></long-description>
<tag name="param" line="1148" description="" type="string" variable="$type">
<type>string</type>
</tag>
<tag name="param" line="1148" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1148" description="" type="bool" variable="$reset">
<type>bool</type>
</tag>
<tag name="resturn" line="1148" description="string"/>
</docblock>
<argument line="0" by_reference="false">
<name>$type</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$reset</name>
<default></default>
<type>bool</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="1170" package="Query\Query_Builder">
<name>get_compiled_select</name>
<full_name>\Query\Query_Builder::get_compiled_select()</full_name>
<docblock line="1170">
<description>Returns the generated 'select' sql query</description>
<long-description></long-description>
<tag name="param" line="1170" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1170" description="" type="bool" variable="$reset">
<type>bool</type>
</tag>
<tag name="return" line="1170" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default>''</default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$reset</name>
<default>TRUE</default>
<type>bool</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="1190" package="Query\Query_Builder">
<name>get_compiled_insert</name>
<full_name>\Query\Query_Builder::get_compiled_insert()</full_name>
<docblock line="1190">
<description>Returns the generated 'insert' sql query</description>
<long-description></long-description>
<tag name="param" line="1190" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1190" description="" type="bool" variable="$reset">
<type>bool</type>
</tag>
<tag name="return" line="1190" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$reset</name>
<default>TRUE</default>
<type>bool</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="1204" package="Query\Query_Builder">
<name>get_compiled_update</name>
<full_name>\Query\Query_Builder::get_compiled_update()</full_name>
<docblock line="1204">
<description>Returns the generated 'update' sql query</description>
<long-description></long-description>
<tag name="param" line="1204" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1204" description="" type="bool" variable="$reset">
<type>bool</type>
</tag>
<tag name="return" line="1204" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default>''</default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$reset</name>
<default>TRUE</default>
<type>bool</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="1218" package="Query\Query_Builder">
<name>get_compiled_delete</name>
<full_name>\Query\Query_Builder::get_compiled_delete()</full_name>
<docblock line="1218">
<description>Returns the generated 'delete' sql query</description>
<long-description></long-description>
<tag name="param" line="1218" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1218" description="" type="bool" variable="$reset">
<type>bool</type>
</tag>
<tag name="return" line="1218" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default>""</default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$reset</name>
<default>TRUE</default>
<type>bool</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="1233" package="Query\Query_Builder">
<name>reset_query</name>
<full_name>\Query\Query_Builder::reset_query()</full_name>
<docblock line="1233">
<description>Clear out the class variables, so the next query can be run</description>
<long-description></long-description>
<tag name="return" line="1233" description="" type="void">
<type>void</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="protected" namespace="Query" line="1276" package="Query\Query_Builder">
<name>_run</name>
<full_name>\Query\Query_Builder::_run()</full_name>
<docblock line="1276">
<description>Executes the compiled query</description>
<long-description></long-description>
<tag name="param" line="1276" description="" type="string" variable="$type">
<type>string</type>
</tag>
<tag name="param" line="1276" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1276" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="param" line="1276" description="" type="array|null" variable="$vals">
<type>array</type>
<type>null</type>
</tag>
<tag name="return" line="1276" description="" type="\Query\PDOStatement">
<type link="PDOStatement.html">\Query\PDOStatement</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$type</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$sql</name>
<default>NULL</default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$vals</name>
<default>NULL</default>
<type>array|null</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="1316" package="Query\Query_Builder">
<name>__call</name>
<full_name>\Query\Query_Builder::__call()</full_name>
<docblock line="1316">
<description>Calls a function further down the inheritence chain</description>
<long-description></long-description>
<tag name="param" line="1316" description="" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="param" line="1316" description="" type="array" variable="$params">
<type>array</type>
</tag>
<tag name="return" line="1316" description="" type="mixed">
<type>mixed</type>
</tag>
<tag name="throws" line="1316" description="" type="\Query\BadMethodCallException">
<type link="BadMethodCallException.html">\Query\BadMethodCallException</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$name</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$params</name>
<default></default>
<type>array</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="protected" namespace="Query" line="1334" package="Query\Query_Builder">
<name>_append_query</name>
<full_name>\Query\Query_Builder::_append_query()</full_name>
<docblock line="1334">
<description>Convert the prepared statement into readable sql</description>
<long-description></long-description>
<tag name="param" line="1334" description="" type="array" variable="$vals">
<type>array</type>
</tag>
<tag name="param" line="1334" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="param" line="1334" description="" type="string" variable="$total_time">
<type>string</type>
</tag>
<tag name="return" line="1334" description="" type="void">
<type>void</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$vals</name>
<default></default>
<type>array</type>
</argument>
<argument line="0" by_reference="false">
<name>$sql</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$total_time</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="protected" namespace="Query" line="1371" package="Query\Query_Builder">
<name>_append_map</name>
<full_name>\Query\Query_Builder::_append_map()</full_name>
<docblock line="1371">
<description>Add an additional set of mapping pairs to a internal map</description>
<long-description></long-description>
<tag name="param" line="1371" description="" type="string" variable="$conjunction">
<type>string</type>
</tag>
<tag name="param" line="1371" description="" type="string" variable="$string">
<type>string</type>
</tag>
<tag name="param" line="1371" description="" type="string" variable="$type">
<type>string</type>
</tag>
<tag name="return" line="1371" description="" type="void">
<type>void</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$conjunction</name>
<default>''</default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$string</name>
<default>''</default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$type</name>
<default>''</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="protected" namespace="Query" line="1389" package="Query\Query_Builder">
<name>_compile_type</name>
<full_name>\Query\Query_Builder::_compile_type()</full_name>
<docblock line="1389">
<description>Sub-method for generating sql strings</description>
<long-description></long-description>
<tag name="param" line="1389" description="" type="string" variable="$type">
<type>string</type>
</tag>
<tag name="param" line="1389" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="1389" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$type</name>
<default>''</default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$table</name>
<default>''</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="protected" namespace="Query" line="1431" package="Query\Query_Builder">
<name>_compile</name>
<full_name>\Query\Query_Builder::_compile()</full_name>
<docblock line="1431">
<description>String together the sql statements for sending to the db</description>
<long-description></long-description>
<tag name="param" line="1431" description="" type="string" variable="$type">
<type>string</type>
</tag>
<tag name="param" line="1431" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="1431" description="" type="\Query\$string">
<type link="$string.html">\Query\$string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$type</name>
<default>''</default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$table</name>
<default>''</default>
<type>string</type>
</argument>
</method>
</class>
<source>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</source>
</file>
<file path="drivers/firebird/firebird_driver.php" generated-path="drivers.firebird.firebird_driver.html" hash="7bce67d325fa98c822058eb961a2e07f" package="Query">
<docblock line="0">
<description>Query</description>
<long-description>Free Query Builder / Database Abstraction Layer</long-description>
<tag name="package" line="0" description="Query"/>
<tag name="author" line="0" description="Timothy J. Warren"/>
<tag name="copyright" line="0" description="Copyright (c) 2012 - 2014"/>
<tag name="link" line="0" description="https://github.com/aviat4ion/Query" link="https://github.com/aviat4ion/Query"/>
<tag name="license" line="0" description="http://philsturgeon.co.uk/code/dbad-license" link="http://philsturgeon.co.uk/code/dbad-license"/>
</docblock>
<class final="false" abstract="false" namespace="Query\Driver" line="26" package="Query\Drivers">
<extends>\Query\Driver\Abstract_Driver</extends>
<name>Firebird</name>
<full_name>\Query\Driver\Firebird</full_name>
<docblock line="26">
<description>Firebird Database class</description>
<long-description>PDO-firebird isn't stable, so this is a wrapper of the fbird_ public functions.</long-description>
<tag name="package" line="26" description="Query"/>
<tag name="subpackage" line="26" description="Drivers"/>
</docblock>
<property static="false" visibility="protected" line="33" namespace="Query\Driver" package="Query\Drivers">
<name>$statement</name>
<default>NULL</default>
<docblock line="33">
<description>Reference to the last query executed</description>
<long-description></long-description>
<tag name="var" line="33" description="" type="object" variable="">
<type>object</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="41" namespace="Query\Driver" package="Query\Drivers">
<name>$statement_link</name>
<default>NULL</default>
<docblock line="41">
<description>Reference to the resource returned by
the last query executed</description>
<long-description></long-description>
<tag name="var" line="41" description="" type="resource" variable="">
<type>resource</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="48" namespace="Query\Driver" package="Query\Drivers">
<name>$trans</name>
<default>NULL</default>
<docblock line="48">
<description>Reference to the current transaction</description>
<long-description></long-description>
<tag name="var" line="48" description="" type="resource" variable="">
<type>resource</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="55" namespace="Query\Driver" package="Query\Drivers">
<name>$conn</name>
<default>NULL</default>
<docblock line="55">
<description>Reference to the connection resource</description>
<long-description></long-description>
<tag name="var" line="55" description="" type="resource" variable="">
<type>resource</type>
</tag>
</docblock>
</property>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="65" package="Query\Drivers">
<name>__construct</name>
<full_name>\Query\Driver\Firebird::__construct()</full_name>
<docblock line="65">
<description>Open the link to the database</description>
<long-description></long-description>
<tag name="param" line="65" description="" type="string" variable="$dbpath">
<type>string</type>
</tag>
<tag name="param" line="65" description="" type="string" variable="$user">
<type>string</type>
</tag>
<tag name="param" line="65" description="" type="string" variable="$pass">
<type>string</type>
</tag>
<tag name="param" line="65" description="" type="array" variable="$options">
<type>array</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$dbpath</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$user</name>
<default>'SYSDBA'</default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$pass</name>
<default>'masterkey'</default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$options</name>
<default>array()</default>
<type>array</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="98" package="Query\Drivers">
<name>truncate</name>
<full_name>\Query\Driver\Firebird::truncate()</full_name>
<docblock line="98">
<description>Empty a database table</description>
<long-description></long-description>
<tag name="param" line="98" description="" type="string" variable="$table">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="113" package="Query\Drivers">
<name>exec</name>
<full_name>\Query\Driver\Firebird::exec()</full_name>
<docblock line="113">
<description>Execute an sql statement and return number of affected rows</description>
<long-description></long-description>
<tag name="param" line="113" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="return" line="113" description="" type="int">
<type>int</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$sql</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="126" package="Query\Drivers">
<name>getAttribute</name>
<full_name>\Query\Driver\Firebird::getAttribute()</full_name>
<docblock line="126">
<description>Implement for compatibility with PDO</description>
<long-description></long-description>
<tag name="param" line="126" description="" type="int" variable="$attribute">
<type>int</type>
</tag>
<tag name="return" line="126" description="" type="mixed">
<type>mixed</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$attribute</name>
<default></default>
<type>int</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="138" package="Query\Drivers">
<name>inTransaction</name>
<full_name>\Query\Driver\Firebird::inTransaction()</full_name>
<docblock line="138">
<description>Return whether the current statement is in a transaction</description>
<long-description></long-description>
<tag name="return" line="138" description="" type="bool">
<type>bool</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="151" package="Query\Drivers">
<name>lastInsertId</name>
<full_name>\Query\Driver\Firebird::lastInsertId()</full_name>
<docblock line="151">
<description>Returns the last value of the specified generator</description>
<long-description></long-description>
<tag name="param" line="151" description="" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="return" line="151" description="" type="mixed">
<type>mixed</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$name</name>
<default>NULL</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="165" package="Query\Drivers">
<name>query</name>
<full_name>\Query\Driver\Firebird::query()</full_name>
<docblock line="165">
<description>Wrapper public function to better match PDO</description>
<long-description></long-description>
<tag name="param" line="165" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="return" line="165" description="" type="\Query\Driver\Firebird_Result">
<type link="Firebird_Result.html">\Query\Driver\Firebird_Result</type>
</tag>
<tag name="throws" line="165" description="" type="\Query\Driver\PDOException">
<type link="PDOException.html">\Query\Driver\PDOException</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$sql</name>
<default>''</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="193" package="Query\Drivers">
<name>prepare</name>
<full_name>\Query\Driver\Firebird::prepare()</full_name>
<docblock line="193">
<description>Emulate PDO prepare</description>
<long-description></long-description>
<tag name="param" line="193" description="" type="string" variable="$query">
<type>string</type>
</tag>
<tag name="param" line="193" description="" type="array" variable="$options">
<type>array</type>
</tag>
<tag name="return" line="193" description="" type="\Query\Driver\Firebird_Result">
<type link="Firebird_Result.html">\Query\Driver\Firebird_Result</type>
</tag>
<tag name="throws" line="193" description="" type="\Query\Driver\PDOException">
<type link="PDOException.html">\Query\Driver\PDOException</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$query</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$options</name>
<default>array()</default>
<type>array</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="212" package="Query\Drivers">
<name>beginTransaction</name>
<full_name>\Query\Driver\Firebird::beginTransaction()</full_name>
<docblock line="212">
<description>Start a database transaction</description>
<long-description></long-description>
<tag name="return" line="212" description="" type="boolean|null">
<type>boolean</type>
<type>null</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="224" package="Query\Drivers">
<name>commit</name>
<full_name>\Query\Driver\Firebird::commit()</full_name>
<docblock line="224">
<description>Commit a database transaction</description>
<long-description></long-description>
<tag name="return" line="224" description="" type="bool">
<type>bool</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="238" package="Query\Drivers">
<name>rollBack</name>
<full_name>\Query\Driver\Firebird::rollBack()</full_name>
<docblock line="238">
<description>Rollback a transaction</description>
<long-description></long-description>
<tag name="return" line="238" description="" type="bool">
<type>bool</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="253" package="Query\Drivers">
<name>setAttribute</name>
<full_name>\Query\Driver\Firebird::setAttribute()</full_name>
<docblock line="253">
<description>Set a connection attribute</description>
<long-description></long-description>
<tag name="param" line="253" description="" type="int" variable="$attribute">
<type>int</type>
</tag>
<tag name="param" line="253" description="" type="mixed" variable="$value">
<type>mixed</type>
</tag>
<tag name="return" line="253" description="" type="bool">
<type>bool</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$attribute</name>
<default></default>
<type>int</type>
</argument>
<argument line="0" by_reference="false">
<name>$value</name>
<default></default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="267" package="Query\Drivers">
<name>prepare_execute</name>
<full_name>\Query\Driver\Firebird::prepare_execute()</full_name>
<docblock line="267">
<description>Prepare and execute a query</description>
<long-description></long-description>
<tag name="param" line="267" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="param" line="267" description="" type="array" variable="$args">
<type>array</type>
</tag>
<tag name="return" line="267" description="" type="\Query\Driver\Firebird_Result">
<type link="Firebird_Result.html">\Query\Driver\Firebird_Result</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$sql</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$args</name>
<default></default>
<type>array</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="286" package="Query\Drivers">
<name>quote</name>
<full_name>\Query\Driver\Firebird::quote()</full_name>
<docblock line="286">
<description>Method to emulate PDO-&gt;quote</description>
<long-description></long-description>
<tag name="param" line="286" description="" type="string" variable="$str">
<type>string</type>
</tag>
<tag name="param" line="286" description="" type="int" variable="$param_type">
<type>int</type>
</tag>
<tag name="return" line="286" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$str</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$param_type</name>
<default>\PDO::PARAM_STR</default>
<type>int</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="303" package="Query\Drivers">
<name>errorInfo</name>
<full_name>\Query\Driver\Firebird::errorInfo()</full_name>
<docblock line="303">
<description>Method to emulate PDO-&gt;errorInfo / PDOStatement-&gt;errorInfo</description>
<long-description></long-description>
<tag name="return" line="303" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="318" package="Query\Drivers">
<name>errorCode</name>
<full_name>\Query\Driver\Firebird::errorCode()</full_name>
<docblock line="318">
<description>Method to emulate PDO-&gt;errorCode</description>
<long-description></long-description>
<tag name="return" line="318" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="332" package="Query\Drivers">
<name>prepare_query</name>
<full_name>\Query\Driver\Firebird::prepare_query()</full_name>
<docblock line="332">
<description>Bind a prepared query with arguments for executing</description>
<long-description></long-description>
<tag name="param" line="332" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="param" line="332" description="" type="array" variable="$params">
<type>array</type>
</tag>
<tag name="return" line="332" description="" type="NULL">
<type>NULL</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$sql</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$params</name>
<default></default>
<type>array</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="348" package="Query\Drivers">
<name>insert_batch</name>
<full_name>\Query\Driver\Firebird::insert_batch()</full_name>
<docblock line="348">
<description>Create sql for batch insert</description>
<long-description></long-description>
<tag name="param" line="348" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="348" description="" type="array" variable="$data">
<type>array</type>
</tag>
<tag name="return" line="348" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$data</name>
<default>array()</default>
<type>array</type>
</argument>
</method>
</class>
<source>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</source>
</file>
<file path="drivers/mysql/mysql_util.php" generated-path="drivers.mysql.mysql_util.html" hash="4b00de516fd5c23ad5448301f2c97ee3" package="Query">
<docblock line="0">
<description>Query</description>
<long-description>Free Query Builder / Database Abstraction Layer</long-description>
<tag name="package" line="0" description="Query"/>
<tag name="author" line="0" description="Timothy J. Warren"/>
<tag name="copyright" line="0" description="Copyright (c) 2012 - 2014"/>
<tag name="link" line="0" description="https://github.com/aviat4ion/Query" link="https://github.com/aviat4ion/Query"/>
<tag name="license" line="0" description="http://philsturgeon.co.uk/code/dbad-license" link="http://philsturgeon.co.uk/code/dbad-license"/>
</docblock>
<class final="false" abstract="false" namespace="Query\Driver" line="30" package="Query\Drivers">
<extends>\Query\Driver\DB_Util</extends>
<name>MySQL_Util</name>
<full_name>\Query\Driver\MySQL_Util</full_name>
<docblock line="30">
<description>MySQL-specific backup, import and creation methods</description>
<long-description></long-description>
<tag name="package" line="30" description="Query"/>
<tag name="subpackage" line="30" description="Drivers"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="42" package="Query\Drivers">
<name>create_table</name>
<full_name>\Query\Driver\MySQL_Util::create_table()</full_name>
<docblock line="42">
<description>Convienience public function for creating a new MySQL table</description>
<long-description></long-description>
<tag name="codeCoverageIgnore" line="42" description=""/>
<tag name="param" line="42" description="" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="param" line="42" description="" type="array" variable="$columns">
<type>array</type>
</tag>
<tag name="param" line="42" description="" type="array" variable="$constraints">
<type>array</type>
</tag>
<tag name="param" line="42" description="" type="array" variable="$indexes">
<type>array</type>
</tag>
<tag name="return" line="42" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$name</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$columns</name>
<default></default>
<type>array</type>
</argument>
<argument line="0" by_reference="false">
<name>$constraints</name>
<default>array()</default>
<type>array</type>
</argument>
<argument line="0" by_reference="false">
<name>$indexes</name>
<default>array()</default>
<type>array</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="108" package="Query\Drivers">
<name>delete_table</name>
<full_name>\Query\Driver\MySQL_Util::delete_table()</full_name>
<docblock line="108">
<description>Convience public function for droping a table</description>
<long-description></long-description>
<tag name="param" line="108" description="" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="return" line="108" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$name</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="120" package="Query\Drivers">
<name>backup_structure</name>
<full_name>\Query\Driver\MySQL_Util::backup_structure()</full_name>
<docblock line="120">
<description>Create an SQL backup file for the current database's structure</description>
<long-description></long-description>
<tag name="return" line="120" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="153" package="Query\Drivers">
<name>backup_data</name>
<full_name>\Query\Driver\MySQL_Util::backup_data()</full_name>
<docblock line="153">
<description>Create an SQL backup file for the current database's data</description>
<long-description></long-description>
<tag name="param" line="153" description="" type="array" variable="$exclude">
<type>array</type>
</tag>
<tag name="return" line="153" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$exclude</name>
<default>array()</default>
<type>array</type>
</argument>
</method>
<method final="false" static="false" visibility="public" line="30">
<name>get_dbs</name>
<docblock>
<description/>
<long-description/>
<tag name="magic" line="30"/>
<tag name="return" line="30" type="">
<type/>
</tag>
<tag name="method" line="30" description="" method_name="get_dbs"/>
</docblock>
</method>
<method final="false" static="false" visibility="public" line="30">
<name>driver_query</name>
<docblock>
<description/>
<long-description/>
<tag name="magic" line="30"/>
<tag name="return" line="30" type="">
<type/>
</tag>
<tag name="method" line="30" description="" method_name="driver_query"/>
</docblock>
</method>
<method final="false" static="false" visibility="public" line="30">
<name>get_system_tables</name>
<docblock>
<description/>
<long-description/>
<tag name="magic" line="30"/>
<tag name="return" line="30" type="">
<type/>
</tag>
<tag name="method" line="30" description="" method_name="get_system_tables"/>
</docblock>
</method>
<method final="false" static="false" visibility="public" line="30">
<name>get_tables</name>
<docblock>
<description/>
<long-description/>
<tag name="magic" line="30"/>
<tag name="return" line="30" type="">
<type/>
</tag>
<tag name="method" line="30" description="" method_name="get_tables"/>
</docblock>
</method>
<method final="false" static="false" visibility="public" line="30">
<name>query</name>
<docblock>
<description/>
<long-description/>
<tag name="magic" line="30"/>
<tag name="return" line="30" type="">
<type/>
</tag>
<tag name="method" line="30" description="" method_name="query"/>
</docblock>
</method>
<method final="false" static="false" visibility="public" line="30">
<name>quote</name>
<docblock>
<description/>
<long-description/>
<tag name="magic" line="30"/>
<tag name="return" line="30" type="">
<type/>
</tag>
<tag name="method" line="30" description="" method_name="quote"/>
</docblock>
</method>
</class>
<source>eJzNWG1P20gQ/uz8imkUne0qJG3VT1DaphBaqpS0JFxPKqfg2Jtkhb1212sgh/jvN7O7fklI71SpJx1Cwt6dnZdnZ54Z8+pNtspa/adPW/AUvhRMrvGBnk8kY2YB3hU8jpiEPhwHKpgHOYPBPFcyCBVPBYyCNZP21NssCK+DJXOcUhe8DQq1SqXjTHmSqtUaPvbgayAlE3o3TLO15MuVco7KJ/BCH148e/4C9ujPSy0Xc3ENjrNSKsv3+/0lV6ti3gvTpB/c8EC9RE/6tc2Yh0zkzMijeLbica4KuWSpwEO94rofphHrR/Mg2rPCeLDfavX7sPfLflotESQsR1AslpfHkt8wedAqIf+0nnwZ7eUZC/mChzBH+IqsCzzJUqkgEBGEkgUa54QhjlG+hTTUQefFvFw0ZnK9bM4BQh6sYcnULJrnnt/cSvgdiyDSZ2bfSZ+H18vFEjr597gL8zSNobPgsWKSRTMuInZ3OD2/GPq7DeTrXLFkhrkSsy1TtdCuXePIIw82ZOz69yJVrBZS0tf3F8ZBnhtUZxeKx8DuFBNRDsfvzPt9q+Vo7B3UeZSKG84E/uIFZcUcMwEWhTB5vUilBR8tBCDYrdEL2nOtoOWYFI7YUYrYIfKnS5FKs0lXJIOkdLhDqbCxYbDohGlcJCLfvSWozrhQO7f1RbBySzJMcGHN6bV+y9kOSgfEDPiedqlbedDdYfZQL3l+d8tmue63nPuW41gVMyN0CHYX89xxsKLOWSqXgeB/MUClKea1VWe0RXCL5QxGB64h8onOeXN6uIQN/d/ojVz/s7JkBB3HVeuMuXD4Gnq9XrdarQN6vKdd2FrGqBx0ggXhyivRgSCH0jBJd8gUCVL8Dl94PJ+JImGSh14pR/BYAac+a44e0OoDAeT8W3T+wT9IfTMxk7SnFcOTw8PKUx/eGHOwD65LerRJdBeeAEsytfaa1+1XATXCr3ZLCHT4en0rvk330LUG8ORg+94cewCPnuIHv21hsH4h9h9TLspUiNiCC67wCKgUSWOFjaaylG/is3VfNhXJY6H9zWSa5VV4tAhYKQkWQRfcK9fkqkNMQo5e3XfEwxUY9/RiD/Hlec6UZ1SVuPsEMQa2sfgAbQS83T5o3m/+jTAgZQeNeAcRcnyjzn82Er7Y9qsJ+nYG1m7sEH50F++ZQFZTDBB5QCLWnEjPVVNKF/rdUCIhhUII39H5cDAdwnTwbjSE0xM4G09h+MfpZDoBQhYTE8H1NLr6CIKLLS9GIvXaXWjXnOQ3Rdq+AdQyHS3jNjn7i7u27hCNBvGD7hAhhKY52PjLjrCD+JsUXXL0boqOWMw2KdqSrD3dPj4ff7bQVmC2/2sgdN8g4qYOaMYUwImA1SlR0EynILIzoptTmEWIPjeQ2WxSuwEw2mfVaa9sMhbQR+3lPavNUgF1cMLRNLvi+d7rauTR4lVxkQzW1G+dqColVDW55hnMceBVe0hDKFOWWCcCpFU3WWPSuT5VLM4FBTMFbn0gGGKeK10VerzR1W8ea4c2Bq325MP4q7nNCZycjz/RnUZ4oV3QE5YxUHltdWnH9XOzvsvu+2M7G3VpDPXwj9akbZ4MRpOh6Tcl3oYuDK0/Q063qTClM9ucYa+3quVLcSmomo0m//+YpPS4Xbl21mF3YVxE7Kczl1R65entSWk7G5qzcJnQJ3rUhrRQNbvmsE4LiFLhKrgNhNru4tZc3cFrS9qDWcQXizKBulVwftWLOmguK3B61xROw4JxZoJ8FBpHZHqbw0KmCVA2mhRo7czOjqr9sD1hMhwNj6b0aWmzXBnaQgnZBMTkq5777S5ZxW2U2nu9YCpcDeLYu/x8PN7fPxlOjz7MBpPJ+MivalEXsYalUYZUxGFaCOyTpNCHV/B8Rx2fBXOTKWYC0d9vMNefLPpDgPau2TovO9+CSyx41Nhs9OjtWwM6iRqDWDvljMHxa1OqmY2rSWbkgc1iUm4EMedwIWFmOqjR1ucJa3xo0gC+Vpd+E8QFMx5YC2TiayqvA4lgRLoy6BMyLLTyDe2GZqTWbZWj9uZN0TcYChi+eHhsPgkyz6Uxy+1C0wd6nlV07p6eTYbnUzg9m47hyu2ZuUz5PReHBHwv6cS96l65jdkA9334fTC6QOr0GmLd0loPxzq3YRJtnV2MRuVK4x4MydVeNafzRl3QEKI5rdegOCK4hiq/R2tVWZXDSq1Fs+AD/adhiBeAeaSbyqzAz9Me/Tfmb+g6G/k=</source>
</file>
<file path="classes/abstract_driver.php" generated-path="classes.abstract_driver.html" hash="8d294ce6bcda8b4528c63b1dc241909d" package="Query">
<docblock line="0">
<description>Query</description>
<long-description>Free Query Builder / Database Abstraction Layer</long-description>
<tag name="package" line="0" description="Query"/>
<tag name="author" line="0" description="Timothy J. Warren"/>
<tag name="copyright" line="0" description="Copyright (c) 2012 - 2014"/>
<tag name="link" line="0" description="https://github.com/aviat4ion/Query" link="https://github.com/aviat4ion/Query"/>
<tag name="license" line="0" description="http://philsturgeon.co.uk/code/dbad-license" link="http://philsturgeon.co.uk/code/dbad-license"/>
</docblock>
<class final="false" abstract="true" namespace="Query\Driver" line="26" package="Query\Drivers">
<extends>\PDO</extends>
<implements>\Query\Driver\Driver_Interface</implements>
<name>Abstract_Driver</name>
<full_name>\Query\Driver\Abstract_Driver</full_name>
<docblock line="26">
<description>Base Database class</description>
<long-description>Extends PDO to simplify cross-database issues</long-description>
<tag name="package" line="26" description="Query"/>
<tag name="subpackage" line="26" description="Drivers"/>
</docblock>
<property static="false" visibility="protected" line="32" namespace="Query\Driver" package="Query\Drivers">
<name>$statement</name>
<default></default>
<docblock line="32">
<description>Reference to the last executed query</description>
<long-description></long-description>
<tag name="var" line="32" description="" type="\Query\Driver\PDOStatement" variable="">
<type link="PDOStatement.html">\Query\Driver\PDOStatement</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="38" namespace="Query\Driver" package="Query\Drivers">
<name>$escape_char</name>
<default>'"'</default>
<docblock line="38">
<description>Character to escape indentifiers</description>
<long-description></long-description>
<tag name="var" line="38" description="" type="string" variable="">
<type>string</type>
</tag>
</docblock>
</property>
<property static="false" visibility="public" line="44" namespace="Query\Driver" package="Query\Drivers">
<name>$sql</name>
<default></default>
<docblock line="44">
<description>Reference to sql class</description>
<long-description></long-description>
<tag name="var" line="44" description="" type="\Query\Driver\SQL_Interface" variable="">
<type link="SQL_Interface.html">\Query\Driver\SQL_Interface</type>
</tag>
</docblock>
</property>
<property static="false" visibility="public" line="50" namespace="Query\Driver" package="Query\Drivers">
<name>$util</name>
<default></default>
<docblock line="50">
<description>Reference to util class</description>
<long-description></long-description>
<tag name="var" line="50" description="" type="\Query\Driver\DB_Util" variable="">
<type link="DB_Util.html">\Query\Driver\DB_Util</type>
</tag>
</docblock>
</property>
<property static="false" visibility="public" line="56" namespace="Query\Driver" package="Query\Drivers">
<name>$last_query</name>
<default></default>
<docblock line="56">
<description>Last query executed</description>
<long-description></long-description>
<tag name="var" line="56" description="" type="string" variable="">
<type>string</type>
</tag>
</docblock>
</property>
<property static="false" visibility="public" line="62" namespace="Query\Driver" package="Query\Drivers">
<name>$table_prefix</name>
<default>''</default>
<docblock line="62">
<description>Prefix to apply to table names</description>
<long-description></long-description>
<tag name="var" line="62" description="" type="string" variable="">
<type>string</type>
</tag>
</docblock>
</property>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="72" package="Query\Drivers">
<name>__construct</name>
<full_name>\Query\Driver\Abstract_Driver::__construct()</full_name>
<docblock line="72">
<description>PDO constructor wrapper</description>
<long-description></long-description>
<tag name="param" line="72" description="" type="string" variable="$dsn">
<type>string</type>
</tag>
<tag name="param" line="72" description="" type="string" variable="$username">
<type>string</type>
</tag>
<tag name="param" line="72" description="" type="string" variable="$password">
<type>string</type>
</tag>
<tag name="param" line="72" description="" type="array" variable="$driver_options">
<type>array</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$dsn</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$username</name>
<default>NULL</default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$password</name>
<default>NULL</default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$driver_options</name>
<default>array()</default>
<type>array</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="98" package="Query\Drivers">
<name>prepare_query</name>
<full_name>\Query\Driver\Abstract_Driver::prepare_query()</full_name>
<docblock line="98">
<description>Simplifies prepared statements for database queries</description>
<long-description></long-description>
<tag name="param" line="98" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="param" line="98" description="" type="array" variable="$data">
<type>array</type>
</tag>
<tag name="return" line="98" description="PDOStatement / FALSE" type="\Query\Driver\PDOStatement">
<type link="PDOStatement.html">\Query\Driver\PDOStatement</type>
</tag>
<tag name="throws" line="98" description="" type="\Query\Driver\InvalidArgumentException">
<type link="InvalidArgumentException.html">\Query\Driver\InvalidArgumentException</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$sql</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$data</name>
<default></default>
<type>array</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="129" package="Query\Drivers">
<name>prepare_execute</name>
<full_name>\Query\Driver\Abstract_Driver::prepare_execute()</full_name>
<docblock line="129">
<description>Create and execute a prepared statement with the provided parameters</description>
<long-description></long-description>
<tag name="param" line="129" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="param" line="129" description="" type="array" variable="$params">
<type>array</type>
</tag>
<tag name="return" line="129" description="" type="\Query\Driver\PDOStatement">
<type link="PDOStatement.html">\Query\Driver\PDOStatement</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$sql</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$params</name>
<default></default>
<type>array</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="144" package="Query\Drivers">
<name>affected_rows</name>
<full_name>\Query\Driver\Abstract_Driver::affected_rows()</full_name>
<docblock line="144">
<description>Returns number of rows affected by an INSERT, UPDATE, DELETE type query</description>
<long-description></long-description>
<tag name="return" line="144" description="" type="int">
<type>int</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="158" package="Query\Drivers">
<name>quote_table</name>
<full_name>\Query\Driver\Abstract_Driver::quote_table()</full_name>
<docblock line="158">
<description>Quote database table name, and set prefix</description>
<long-description></long-description>
<tag name="param" line="158" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="158" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="protected" namespace="Query\Driver" line="191" package="Query\Drivers">
<name>_prefix</name>
<full_name>\Query\Driver\Abstract_Driver::_prefix()</full_name>
<docblock line="191">
<description>Sets the table prefix on the passed string</description>
<long-description></long-description>
<tag name="param" line="191" description="" type="string" variable="$str">
<type>string</type>
</tag>
<tag name="return" line="191" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$str</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="210" package="Query\Drivers">
<name>quote_ident</name>
<full_name>\Query\Driver\Abstract_Driver::quote_ident()</full_name>
<docblock line="210">
<description>Surrounds the string with the databases identifier escape characters</description>
<long-description></long-description>
<tag name="param" line="210" description="" type="mixed" variable="$ident">
<type>mixed</type>
</tag>
<tag name="return" line="210" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$ident</name>
<default></default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="257" package="Query\Drivers">
<name>_quote</name>
<full_name>\Query\Driver\Abstract_Driver::_quote()</full_name>
<docblock line="257">
<description>Helper method for quote_ident</description>
<long-description></long-description>
<tag name="param" line="257" description="" type="mixed" variable="$str">
<type>mixed</type>
</tag>
<tag name="return" line="257" description="" type="mixed">
<type>mixed</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$str</name>
<default></default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="280" package="Query\Drivers">
<name>get_schemas</name>
<full_name>\Query\Driver\Abstract_Driver::get_schemas()</full_name>
<docblock line="280">
<description>Return schemas for databases that list them</description>
<long-description></long-description>
<tag name="return" line="280" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="292" package="Query\Drivers">
<name>get_tables</name>
<full_name>\Query\Driver\Abstract_Driver::get_tables()</full_name>
<docblock line="292">
<description>Return list of tables for the current database</description>
<long-description></long-description>
<tag name="return" line="292" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="304" package="Query\Drivers">
<name>get_dbs</name>
<full_name>\Query\Driver\Abstract_Driver::get_dbs()</full_name>
<docblock line="304">
<description>Return list of dbs for the current connection, if possible</description>
<long-description></long-description>
<tag name="return" line="304" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="316" package="Query\Drivers">
<name>get_views</name>
<full_name>\Query\Driver\Abstract_Driver::get_views()</full_name>
<docblock line="316">
<description>Return list of views for the current database</description>
<long-description></long-description>
<tag name="return" line="316" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="328" package="Query\Drivers">
<name>get_sequences</name>
<full_name>\Query\Driver\Abstract_Driver::get_sequences()</full_name>
<docblock line="328">
<description>Return list of sequences for the current database, if they exist</description>
<long-description></long-description>
<tag name="return" line="328" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="340" package="Query\Drivers">
<name>get_functions</name>
<full_name>\Query\Driver\Abstract_Driver::get_functions()</full_name>
<docblock line="340">
<description>Return list of function for the current database</description>
<long-description></long-description>
<tag name="return" line="340" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="352" package="Query\Drivers">
<name>get_procedures</name>
<full_name>\Query\Driver\Abstract_Driver::get_procedures()</full_name>
<docblock line="352">
<description>Return list of stored procedures for the current database</description>
<long-description></long-description>
<tag name="return" line="352" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="364" package="Query\Drivers">
<name>get_triggers</name>
<full_name>\Query\Driver\Abstract_Driver::get_triggers()</full_name>
<docblock line="364">
<description>Return list of triggers for the current database</description>
<long-description></long-description>
<tag name="return" line="364" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="377" package="Query\Drivers">
<name>get_system_tables</name>
<full_name>\Query\Driver\Abstract_Driver::get_system_tables()</full_name>
<docblock line="377">
<description>Retreives an array of non-user-created tables for
the connection/database</description>
<long-description></long-description>
<tag name="return" line="377" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="390" package="Query\Drivers">
<name>get_columns</name>
<full_name>\Query\Driver\Abstract_Driver::get_columns()</full_name>
<docblock line="390">
<description>Retrieve column information for the current database table</description>
<long-description></long-description>
<tag name="param" line="390" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="390" description="" type="array">
<type>array</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="402" package="Query\Drivers">
<name>get_types</name>
<full_name>\Query\Driver\Abstract_Driver::get_types()</full_name>
<docblock line="402">
<description>Retrieve list of data types for the database</description>
<long-description></long-description>
<tag name="return" line="402" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="416" package="Query\Drivers">
<name>driver_query</name>
<full_name>\Query\Driver\Abstract_Driver::driver_query()</full_name>
<docblock line="416">
<description>Method to simplify retreiving db results for meta-data queries</description>
<long-description></long-description>
<tag name="param" line="416" description="" type="string|array|null" variable="$sql">
<type>string</type>
<type>array</type>
<type>null</type>
</tag>
<tag name="param" line="416" description="" type="bool" variable="$filtered_index">
<type>bool</type>
</tag>
<tag name="return" line="416" description="" type="array">
<type>array</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$sql</name>
<default></default>
<type>string|array|null</type>
</argument>
<argument line="0" by_reference="false">
<name>$filtered_index</name>
<default>TRUE</default>
<type>bool</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="441" package="Query\Drivers">
<name>num_rows</name>
<full_name>\Query\Driver\Abstract_Driver::num_rows()</full_name>
<docblock line="441">
<description>Return the number of rows returned for a SELECT query</description>
<long-description></long-description>
<tag name="see" line="441" description="" link="\Query\Driver\http://us3.php.net/manual/en/pdostatement.rowcount.php#87110"/>
<tag name="return" line="441" description="" type="int">
<type>int</type>
</tag>
</docblock>
</method>
<method final="false" abstract="true" static="false" visibility="public" namespace="Query\Driver" line="465" package="Query\Drivers">
<name>truncate</name>
<full_name>\Query\Driver\Abstract_Driver::truncate()</full_name>
<docblock line="465">
<description>Empty the passed table</description>
<long-description></long-description>
<tag name="param" line="465" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="465" description="" type="void">
<type>void</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="476" package="Query\Drivers">
<name>insert_batch</name>
<full_name>\Query\Driver\Abstract_Driver::insert_batch()</full_name>
<docblock line="476">
<description>Create sql for batch insert</description>
<long-description></long-description>
<tag name="param" line="476" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="476" description="" type="array" variable="$data">
<type>array</type>
</tag>
<tag name="return" line="476" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$data</name>
<default>array()</default>
<type>array</type>
</argument>
</method>
</class>
<source>eJzFWntz2zYS/1v6FKjqqahED7vtzN3Zp7iOrVx849ipJPduLvFxIBKSUFMkQ5B2dYm/++1iQZCSKSfq2Emn08og9vXDPoAF/n4Yz+N679mzOnvGfs1EsoQf+PtVIgQNsJeZDHyRsB474SmfcCXY0USlCfdSGYXsjC9FYqh+ibl3zWeiVst5sV94ls6jpFYby0WUzpfsn132L54kItRfvSheJnI2T2vH+S/meC324+7ej6yD//tZzwtkeM1qtXmaxmq/15vJdJ5Nul606PEbydOfQZNeITOQngiVoPkwPZ7LQKVZMhNRCETd7LrnRb7o+RPud8xkIOzV670e6zzaP/V6yBdCASgGy/cnibwRyUE9h/wlomlh9QKulIFy8EcqQl+xtycXLI2Ykos4kNMl85JIqY6fk0ilMqHW4GcFEiqb5IMkW2k7uVlAEmnX06U5TBjh71E6ShYLEabKsHBPw1QkU7TqY71eQ1NqIGsopgKWFUZB33QuGLBOgZXwslT47IPWCSf+csMTtGuU8lQzxtFevRYnUSo8nLuj8k8HJQHHc45Kgn4gQCiPx2B/6MMsOZVomWUO1shwdp8tEbkeMGJ91mw0Dzbprz4EZjks09GvZ4XlOe9sAu4D+n4INrLKUnmP18lL9xKG17jgzDKbMwRQ42Zh3GSj4YCQu5qizOdtIqbyD9SFx3Gw1OvDJ4Fg2j0/w1LPdGNiAaCtYIb+4UUhEGZeGiXsNgEJkA7gG7GNYckWhjHb8VVYNZwpkaAqVd9iwO02SvzyN0gffAncyBujGPOQWlV7moWUnlzX6ueg/HYhrn9+eXbWLkSYvyu59/Wo02rVax/rtRqkiZFI8+D0pYoDoBFJEiWKcQXL5QkiBH6hb3AnlswqXFsT8g7jbX//aDweuoPh8M3FyeAKIKdRM+AO/n08eDs+vTg/AAaAB7j//v4DVpYMbK9b1cK1RGPOIu7rmEW/R4ULp2VTWFf8RKQwHwYE9+YOQdIEkmabNZGi2ULjdyDpAE4aqNoOMemzmUhd/dvZSedStViXNdyPOPeucaBn4nDnBY7A9FDcsp3yfJxzV4d/67XHTdLI7jt2HIVeIlJhPUeB0RwSJA/ZRLAITE+kD8kGUg7zoJ74BA/GzyMXDRtdI0r6UigG8Ydr7TObGWlhbCHAoJcUzFVhBItUFUFATcNgepaEK1l59Y8ee3V0NhrQ7HSeRLeKnYY3PJD+UTLLcM4gd/oNoWhsoPzkoEptUqEIqrc0JXfFNlP8xvxlNUGzBVdLxj1PgGsF8AHd0vhPMbHPzJARrEWSy8upA2vuSOWSE5Ma7NMnKKhuNPld6DjCsZb1ZG209sv3mwx3GuaLXhdAmb43jPOSjS+hZmmT9FKAy2HlskG1Q5QQRdes/4LtALtMWB0QIkvFEKm9Di4/hLYOUaSViu3SoKEYRW0mp3rCtVji9xDUSqQHucn32R5OA0DAcjPu7Fy3WqDA8+flwLTAdl5MwITfUDGY2c51tDYaX1onO3j84C1vDgA+iF7MXaZWMl4RNewWdo6EfhLdSB++lZdhm+DRf6iN4fOZIDBK5mFAzEwgfNaTV0PI0B5UUHZe5HLI77/J0gy1UO11Eyx/U6azB59OaVs2gVAO2en5aDAct9nl25Oj8aDNTgZng/GApctYFHvHFbTlRpBz1i4Kcor0QppsUmQzPp0XMPE4ysIUcXyCGlSA9WsGu9UirRf7NNpIKNh10F5sk7NqihWcqrZ1FqoPKM/VRA7RFnAd+SZR2f0j/lWoRLMmAnOXZoQKyFTnV4YJVizidOkYNMsbyVY5o42gyKXlnTx6BOwiZQRp7VYGAVNmRhrtG5ocoK7y5mLBu6TUxdB8rh61RGvjBjIIH+nrytqHHBIHcEJ0ml3Y2xhcKBkqMVuYSZ72CENEAYbsaAntCUiCD5ldoMHTrm6+klbyu4J9h+1dFYFvcHPgWGYFFhKH4vdIhpSrtWl9fWorDLAqFmXolQx5ECzb5AHFyt6LAvIQzcEpkHjKGICttSq5mnE/cFaqmrDp8ktOXZmx0+SBELAHwuKUYOBFwsL/T6KwmYcbpigeQJHxl2YE6HPA0N2BMo6U5tBmVS7Pvuv3aRNlnT8HGmg2VM8yh66Z96TQZ3CGyfDsT5suDaetmbnjKiaLYDUncS8/nd8rowuNFfngtonJuJ3+n1kYBLvYuNGXdUT1R3fBY3NI0Wi24TD4ZjB+fXHiuq08KFZi4jVEKTicFy0WvKOw1HJ0E1nuMawstv4Ch592s2p5sTKvZpN2c0VuMaNQuLmYuIDLokmV3URt1cwHTCsTanHljNBeZZ0bT2kYN6Hl1YVUrKNOp2PcYcwRhnsZsrDJTqg2SX+1586h6ADYsQxEyd+QScJv15PYBsObrvaUZssyt9xfQdja4xxyxT+sarqUQzIQM2CaenMX0qHT+P6jibxSr+jOecc7/zvq/Ge38zf36rnz3nG6zw5b7+FwUDX7e5k1QBkwAf6rRbbZ2+HgH+5oMHYvhieDoZZsd/ykFW75p+WyeBkWmTm3Qi8oYQNYubAbDLgHhXv6bvcKhb3buyLJVdVIhgqWac2bN7D76apdmf/xS8uKWEtZMIhinzI/vRYBuCKD/fo88vVRsKTehsSzXgz08KZ2kWa3VgeO58K7pnYA4uhl2L5OmT724HGKG8dt03Qs9XjIilJbMTRXf22rRLM1W82qzSJgn9xKBT+NrigvSuQMizXNKvB2cPmqyk7JGSkt7eLMH35ANbeYDUmW7Mrh0KPfsfJB0XzQHw9ZoyocPuKku6ovDaTaN+XvKxxBzLZwtXNi+jyBVHp1F/eOGTpZbHAXbGoZpvkxw1BhL/FrHKtIcTjK6J1C0a3LnTQ3c2uziN+aVWYRTRfRnELNYelDkG9XUCWn9RS7xM3m+5P7tntRGAptkW6AgOcraQ5HW0EBvLfEwZ98ExBupLh9RBfQ7La0HGm+ie1KgDKh90AI5F0wvE0Bou0DPZewJSQ53TeBxVrwaF5hd1RbwpDTGRjaZrP8dZ0kjbAdCCdAT/hZ8pj5suC5JS6W8FsCA3V+NsN9++PVD8Nx2wpCZF8bi0SAPkof8nV3FyAJo7CDl2gdT7eW/VKF1VQaJVthen8aKLVUqVj8uXpbpn3C9LIOlhQ3aHuQLbALC4DAAeqhHJM3Sr60Y/k5yEi0Wm1YfiFkREtgGfon9LJK5OyeBa9rsMFdumT90+GGbLaNNaD5qoH2ho5t5fcsCcUeOoI/gb9UFpirTTjjcf3Q5eG7zU8amU9hFgT3bmomUQSDUxmkAtK+iy3mP74Y1VXY6KpllVV/PLwc3LtdMFdt+rBGd3QkDBtJIYQr93HtyaqlOTKCuYaMnnv4kVDYeyzea5Qv4Fc7YHipaW4uEQQauN9ixBcq5ry+g4WvX5zvcwOpabAzDfgMPjtr1rbYoXmK8GowPn7tnl++YfsrI0ej0cWx7gFxWAwQAHKg7ovUmx+hYsh45R6qUgTsnWnUQTZtttsCMfjz6cMzP3GvXRDZ9UO35Gw0OBscj9cvpZQQzDw3y9RP3Xged0OR9hY8zHjQE2Ev9iN7odQFvvr2AOd9/9e/7O3tfuHVFqi2cqsFGM+EfpjT+y8p9l49dw73j87O4Menk9PR+PRcD7YOYVj3rdTzV8OLNziv+6y105NNvWZRlsZZWu6OGVcrWmQOSbOtg+K5EQwRfYu9gBWzHVCVLtJ1V2sYAI8vLs/HzrMWQ23YR8Pg3d7VHV2YWy8BNFpMszLedKxzuHOvA/VUh256IpK/kmNra6IwQO0ruSd+H1Jy2AHerpXvRLassjeRzNtgfINpsC+EXzwVxc3P0wWgucLHJ0gYaBP0OEyZIrnX2asw6uGHLQ9eNZAMd0Iurnmalylrz77MtabNvWafY5+KsBU/xKCCKlBuODPA7jcqDGgiCaa+rr25W2m7rlzM6jCdShH4RX/9WizVuh4kGnHsswbdq7PT8/EFxJhmdMcc3Xrrrt0JVPV7tTRdTmB6o8V+Ozq7HIxYI++xm0XTXhhwbx7pt8KzJMpi3XKnxwlWXcjsgbPbzq9ODfs2ax42yTw93/QdUX2nwdbVNO8d8AFZq1Ei0tuqDYI0MDmtYW/vCfCem4e6+Uqao2x6ZuTNK9/m6FlFliuvsrsQyQyWDMfySwvaCziGbOXWxd6xa/ctcMPV61Zc2hg7V8posRGgxziKtnF3+Jp5EPrUHnOh/mC1+T961Dbf</source>
</file>
<file path="classes/query_builder_interface.php" generated-path="classes.query_builder_interface.html" hash="5edccd236201eb01469f32f9684ce085" package="Query">
<docblock line="0">
<description>Query</description>
<long-description>Free Query Builder / Database Abstraction Layer</long-description>
<tag name="package" line="0" description="Query"/>
<tag name="author" line="0" description="Timothy J. Warren"/>
<tag name="copyright" line="0" description="Copyright (c) 2012 - 2014"/>
<tag name="link" line="0" description="https://github.com/aviat4ion/Query" link="https://github.com/aviat4ion/Query"/>
<tag name="license" line="0" description="http://philsturgeon.co.uk/code/dbad-license" link="http://philsturgeon.co.uk/code/dbad-license"/>
</docblock>
<interface namespace="Query" line="24" package="Query\Query_Builder">
<name>Query_Builder_Interface</name>
<full_name>\Query\Query_Builder_Interface</full_name>
<docblock line="24">
<description>Interface defining the Query Builder class</description>
<long-description></long-description>
<tag name="package" line="24" description="Query"/>
<tag name="subpackage" line="24" description="Query_Builder"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="36" package="Query\Query_Builder">
<name>select</name>
<full_name>\Query\Query_Builder_Interface::select()</full_name>
<docblock line="36">
<description>Specifies rows to select in a query</description>
<long-description></long-description>
<tag name="param" line="36" description="" type="string" variable="$fields">
<type>string</type>
</tag>
<tag name="return" line="36" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$fields</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="47" package="Query\Query_Builder">
<name>select_max</name>
<full_name>\Query\Query_Builder_Interface::select_max()</full_name>
<docblock line="47">
<description>Selects the maximum value of a field from a query</description>
<long-description></long-description>
<tag name="param" line="47" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="47" description="" type="string" variable="$as">
<type>string</type>
</tag>
<tag name="return" line="47" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$as</name>
<default>FALSE</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="58" package="Query\Query_Builder">
<name>select_min</name>
<full_name>\Query\Query_Builder_Interface::select_min()</full_name>
<docblock line="58">
<description>Selects the minimum value of a field from a query</description>
<long-description></long-description>
<tag name="param" line="58" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="58" description="" type="string" variable="$as">
<type>string</type>
</tag>
<tag name="return" line="58" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$as</name>
<default>FALSE</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="69" package="Query\Query_Builder">
<name>select_avg</name>
<full_name>\Query\Query_Builder_Interface::select_avg()</full_name>
<docblock line="69">
<description>Selects the average value of a field from a query</description>
<long-description></long-description>
<tag name="param" line="69" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="69" description="" type="string" variable="$as">
<type>string</type>
</tag>
<tag name="return" line="69" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$as</name>
<default>FALSE</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="80" package="Query\Query_Builder">
<name>select_sum</name>
<full_name>\Query\Query_Builder_Interface::select_sum()</full_name>
<docblock line="80">
<description>Selects the sum of a field from a query</description>
<long-description></long-description>
<tag name="param" line="80" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="80" description="" type="string" variable="$as">
<type>string</type>
</tag>
<tag name="return" line="80" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$as</name>
<default>FALSE</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="89" package="Query\Query_Builder">
<name>distinct</name>
<full_name>\Query\Query_Builder_Interface::distinct()</full_name>
<docblock line="89">
<description>Adds the 'distinct' keyword to a query</description>
<long-description></long-description>
<tag name="return" line="89" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="98" package="Query\Query_Builder">
<name>explain</name>
<full_name>\Query\Query_Builder_Interface::explain()</full_name>
<docblock line="98">
<description>Shows the query plan for the query</description>
<long-description></long-description>
<tag name="return" line="98" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="108" package="Query\Query_Builder">
<name>from</name>
<full_name>\Query\Query_Builder_Interface::from()</full_name>
<docblock line="108">
<description>Specify the database table to select from</description>
<long-description></long-description>
<tag name="param" line="108" description="" type="string" variable="$tblname">
<type>string</type>
</tag>
<tag name="return" line="108" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$tblname</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="122" package="Query\Query_Builder">
<name>like</name>
<full_name>\Query\Query_Builder_Interface::like()</full_name>
<docblock line="122">
<description>Creates a Like clause in the sql statement</description>
<long-description></long-description>
<tag name="param" line="122" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="122" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="122" description="" type="string" variable="$pos">
<type>string</type>
</tag>
<tag name="return" line="122" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$pos</name>
<default>'both'</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="134" package="Query\Query_Builder">
<name>or_like</name>
<full_name>\Query\Query_Builder_Interface::or_like()</full_name>
<docblock line="134">
<description>Generates an OR Like clause</description>
<long-description></long-description>
<tag name="param" line="134" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="134" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="134" description="" type="string" variable="$pos">
<type>string</type>
</tag>
<tag name="return" line="134" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$pos</name>
<default>'both'</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="146" package="Query\Query_Builder">
<name>not_like</name>
<full_name>\Query\Query_Builder_Interface::not_like()</full_name>
<docblock line="146">
<description>Generates a NOT LIKE clause</description>
<long-description></long-description>
<tag name="param" line="146" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="146" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="146" description="" type="string" variable="$pos">
<type>string</type>
</tag>
<tag name="return" line="146" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$pos</name>
<default>'both'</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="158" package="Query\Query_Builder">
<name>or_not_like</name>
<full_name>\Query\Query_Builder_Interface::or_not_like()</full_name>
<docblock line="158">
<description>Generates a OR NOT LIKE clause</description>
<long-description></long-description>
<tag name="param" line="158" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="158" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="158" description="" type="string" variable="$pos">
<type>string</type>
</tag>
<tag name="return" line="158" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$pos</name>
<default>'both'</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="171" package="Query\Query_Builder">
<name>having</name>
<full_name>\Query\Query_Builder_Interface::having()</full_name>
<docblock line="171">
<description>Generates a 'Having' clause</description>
<long-description></long-description>
<tag name="param" line="171" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="171" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="171" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$key</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default>array()</default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="182" package="Query\Query_Builder">
<name>or_having</name>
<full_name>\Query\Query_Builder_Interface::or_having()</full_name>
<docblock line="182">
<description>Generates a 'Having' clause prefixed with 'OR'</description>
<long-description></long-description>
<tag name="param" line="182" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="182" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="182" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$key</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default>array()</default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="198" package="Query\Query_Builder">
<name>where</name>
<full_name>\Query\Query_Builder_Interface::where()</full_name>
<docblock line="198">
<description>Specify condition(s) in the where clause of a query
Note: this function works with key / value, or a
passed array with key / value pairs</description>
<long-description></long-description>
<tag name="param" line="198" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="198" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="198" description="" type="bool" variable="$escape">
<type>bool</type>
</tag>
<tag name="return" line="198" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$key</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default>array()</default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$escape</name>
<default>NULL</default>
<type>bool</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="209" package="Query\Query_Builder">
<name>or_where</name>
<full_name>\Query\Query_Builder_Interface::or_where()</full_name>
<docblock line="209">
<description>Where clause prefixed with "OR"</description>
<long-description></long-description>
<tag name="param" line="209" description="" type="string" variable="$key">
<type>string</type>
</tag>
<tag name="param" line="209" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="209" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$key</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default>array()</default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="220" package="Query\Query_Builder">
<name>where_in</name>
<full_name>\Query\Query_Builder_Interface::where_in()</full_name>
<docblock line="220">
<description>Where clause with 'IN' statement</description>
<long-description></long-description>
<tag name="param" line="220" description="" type="mixed" variable="$field">
<type>mixed</type>
</tag>
<tag name="param" line="220" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="220" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default>array()</default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="231" package="Query\Query_Builder">
<name>or_where_in</name>
<full_name>\Query\Query_Builder_Interface::or_where_in()</full_name>
<docblock line="231">
<description>Where in statement prefixed with "or"</description>
<long-description></long-description>
<tag name="param" line="231" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="231" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="231" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default>array()</default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="242" package="Query\Query_Builder">
<name>where_not_in</name>
<full_name>\Query\Query_Builder_Interface::where_not_in()</full_name>
<docblock line="242">
<description>WHERE NOT IN (FOO) clause</description>
<long-description></long-description>
<tag name="param" line="242" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="242" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="242" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default>array()</default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="253" package="Query\Query_Builder">
<name>or_where_not_in</name>
<full_name>\Query\Query_Builder_Interface::or_where_not_in()</full_name>
<docblock line="253">
<description>OR WHERE NOT IN (FOO) clause</description>
<long-description></long-description>
<tag name="param" line="253" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="253" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="253" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default>array()</default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="266" package="Query\Query_Builder">
<name>set</name>
<full_name>\Query\Query_Builder_Interface::set()</full_name>
<docblock line="266">
<description>Sets values for inserts / updates / deletes</description>
<long-description></long-description>
<tag name="param" line="266" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="266" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="266" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$key</name>
<default></default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$val</name>
<default>NULL</default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="278" package="Query\Query_Builder">
<name>join</name>
<full_name>\Query\Query_Builder_Interface::join()</full_name>
<docblock line="278">
<description>Creates a join phrase in a compiled query</description>
<long-description></long-description>
<tag name="param" line="278" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="278" description="" type="string" variable="$condition">
<type>string</type>
</tag>
<tag name="param" line="278" description="" type="string" variable="$type">
<type>string</type>
</tag>
<tag name="return" line="278" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$condition</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$type</name>
<default>''</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="288" package="Query\Query_Builder">
<name>group_by</name>
<full_name>\Query\Query_Builder_Interface::group_by()</full_name>
<docblock line="288">
<description>Group the results by the selected field(s)</description>
<long-description></long-description>
<tag name="param" line="288" description="" type="mixed" variable="$field">
<type>mixed</type>
</tag>
<tag name="return" line="288" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="299" package="Query\Query_Builder">
<name>order_by</name>
<full_name>\Query\Query_Builder_Interface::order_by()</full_name>
<docblock line="299">
<description>Order the results by the selected field(s)</description>
<long-description></long-description>
<tag name="param" line="299" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="299" description="" type="string" variable="$type">
<type>string</type>
</tag>
<tag name="return" line="299" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$field</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$type</name>
<default>""</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="310" package="Query\Query_Builder">
<name>limit</name>
<full_name>\Query\Query_Builder_Interface::limit()</full_name>
<docblock line="310">
<description>Set a limit on the current sql statement</description>
<long-description></long-description>
<tag name="param" line="310" description="" type="int" variable="$limit">
<type>int</type>
</tag>
<tag name="param" line="310" description="" type="int" variable="$offset">
<type>int</type>
</tag>
<tag name="return" line="310" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$limit</name>
<default></default>
<type>int</type>
</argument>
<argument line="0" by_reference="false">
<name>$offset</name>
<default>FALSE</default>
<type>int</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="321" package="Query\Query_Builder">
<name>group_start</name>
<full_name>\Query\Query_Builder_Interface::group_start()</full_name>
<docblock line="321">
<description>Adds a paren to the current query for query grouping</description>
<long-description></long-description>
<tag name="return" line="321" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="331" package="Query\Query_Builder">
<name>or_group_start</name>
<full_name>\Query\Query_Builder_Interface::or_group_start()</full_name>
<docblock line="331">
<description>Adds a paren to the current query for query grouping,
prefixed with 'OR'</description>
<long-description></long-description>
<tag name="return" line="331" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="341" package="Query\Query_Builder">
<name>or_not_group_start</name>
<full_name>\Query\Query_Builder_Interface::or_not_group_start()</full_name>
<docblock line="341">
<description>Adds a paren to the current query for query grouping,
prefixed with 'OR NOT'</description>
<long-description></long-description>
<tag name="return" line="341" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="350" package="Query\Query_Builder">
<name>group_end</name>
<full_name>\Query\Query_Builder_Interface::group_end()</full_name>
<docblock line="350">
<description>Ends a query group</description>
<long-description></long-description>
<tag name="return" line="350" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="365" package="Query\Query_Builder">
<name>get</name>
<full_name>\Query\Query_Builder_Interface::get()</full_name>
<docblock line="365">
<description>Select and retrieve all records from the current table, and/or
execute current compiled query</description>
<long-description></long-description>
<tag name="param" line="365" description="" type="" variable="$table"/>
<tag name="param" line="365" description="" type="int" variable="$limit">
<type>int</type>
</tag>
<tag name="param" line="365" description="" type="int" variable="$offset">
<type>int</type>
</tag>
<tag name="return" line="365" description="" type="\Query\PDOStatement">
<type link="PDOStatement.html">\Query\PDOStatement</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default>''</default>
<type>mixed</type>
</argument>
<argument line="0" by_reference="false">
<name>$limit</name>
<default>FALSE</default>
<type>int</type>
</argument>
<argument line="0" by_reference="false">
<name>$offset</name>
<default>FALSE</default>
<type>int</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="378" package="Query\Query_Builder">
<name>get_where</name>
<full_name>\Query\Query_Builder_Interface::get_where()</full_name>
<docblock line="378">
<description>Convience method for get() with a where clause</description>
<long-description></long-description>
<tag name="param" line="378" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="378" description="" type="array" variable="$where">
<type>array</type>
</tag>
<tag name="param" line="378" description="" type="int" variable="$limit">
<type>int</type>
</tag>
<tag name="param" line="378" description="" type="int" variable="$offset">
<type>int</type>
</tag>
<tag name="return" line="378" description="" type="\Query\PDOStatement">
<type link="PDOStatement.html">\Query\PDOStatement</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$where</name>
<default>array()</default>
<type>array</type>
</argument>
<argument line="0" by_reference="false">
<name>$limit</name>
<default>FALSE</default>
<type>int</type>
</argument>
<argument line="0" by_reference="false">
<name>$offset</name>
<default>FALSE</default>
<type>int</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="388" package="Query\Query_Builder">
<name>count_all</name>
<full_name>\Query\Query_Builder_Interface::count_all()</full_name>
<docblock line="388">
<description>Retreive the number of rows in the selected table</description>
<long-description></long-description>
<tag name="param" line="388" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="388" description="" type="int">
<type>int</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="399" package="Query\Query_Builder">
<name>count_all_results</name>
<full_name>\Query\Query_Builder_Interface::count_all_results()</full_name>
<docblock line="399">
<description>Retrieve the number of results for the generated query - used
in place of the get() method</description>
<long-description></long-description>
<tag name="param" line="399" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="399" description="" type="int">
<type>int</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default>''</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="410" package="Query\Query_Builder">
<name>insert</name>
<full_name>\Query\Query_Builder_Interface::insert()</full_name>
<docblock line="410">
<description>Creates an insert clause, and executes it</description>
<long-description></long-description>
<tag name="param" line="410" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="410" description="" type="mixed" variable="$data">
<type>mixed</type>
</tag>
<tag name="return" line="410" description="" type="\Query\PDOStatement">
<type link="PDOStatement.html">\Query\PDOStatement</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$data</name>
<default>array()</default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="421" package="Query\Query_Builder">
<name>insert_batch</name>
<full_name>\Query\Query_Builder_Interface::insert_batch()</full_name>
<docblock line="421">
<description>Creates and executes a batch insertion query</description>
<long-description></long-description>
<tag name="param" line="421" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="421" description="" type="array" variable="$data">
<type>array</type>
</tag>
<tag name="return" line="421" description="" type="\Query\PDOStatement">
<type link="PDOStatement.html">\Query\PDOStatement</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$data</name>
<default>array()</default>
<type>array</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="432" package="Query\Query_Builder">
<name>update</name>
<full_name>\Query\Query_Builder_Interface::update()</full_name>
<docblock line="432">
<description>Creates an update clause, and executes it</description>
<long-description></long-description>
<tag name="param" line="432" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="432" description="" type="mixed" variable="$data">
<type>mixed</type>
</tag>
<tag name="return" line="432" description="" type="\Query\PDOStatement">
<type link="PDOStatement.html">\Query\PDOStatement</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$data</name>
<default>array()</default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="443" package="Query\Query_Builder">
<name>delete</name>
<full_name>\Query\Query_Builder_Interface::delete()</full_name>
<docblock line="443">
<description>Deletes data from a table</description>
<long-description></long-description>
<tag name="param" line="443" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="443" description="" type="mixed" variable="$where">
<type>mixed</type>
</tag>
<tag name="return" line="443" description="" type="\Query\PDOStatement">
<type link="PDOStatement.html">\Query\PDOStatement</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$where</name>
<default>''</default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="456" package="Query\Query_Builder">
<name>get_compiled_select</name>
<full_name>\Query\Query_Builder_Interface::get_compiled_select()</full_name>
<docblock line="456">
<description>Returns the generated 'select' sql query</description>
<long-description></long-description>
<tag name="param" line="456" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="456" description="" type="bool" variable="$reset">
<type>bool</type>
</tag>
<tag name="return" line="456" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default>''</default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$reset</name>
<default>TRUE</default>
<type>bool</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="467" package="Query\Query_Builder">
<name>get_compiled_insert</name>
<full_name>\Query\Query_Builder_Interface::get_compiled_insert()</full_name>
<docblock line="467">
<description>Returns the generated 'insert' sql query</description>
<long-description></long-description>
<tag name="param" line="467" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="467" description="" type="bool" variable="$reset">
<type>bool</type>
</tag>
<tag name="return" line="467" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$reset</name>
<default>TRUE</default>
<type>bool</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="478" package="Query\Query_Builder">
<name>get_compiled_update</name>
<full_name>\Query\Query_Builder_Interface::get_compiled_update()</full_name>
<docblock line="478">
<description>Returns the generated 'update' sql query</description>
<long-description></long-description>
<tag name="param" line="478" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="478" description="" type="bool" variable="$reset">
<type>bool</type>
</tag>
<tag name="return" line="478" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default>''</default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$reset</name>
<default>TRUE</default>
<type>bool</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="489" package="Query\Query_Builder">
<name>get_compiled_delete</name>
<full_name>\Query\Query_Builder_Interface::get_compiled_delete()</full_name>
<docblock line="489">
<description>Returns the generated 'delete' sql query</description>
<long-description></long-description>
<tag name="param" line="489" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="489" description="" type="bool" variable="$reset">
<type>bool</type>
</tag>
<tag name="return" line="489" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default>""</default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$reset</name>
<default>TRUE</default>
<type>bool</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="500" package="Query\Query_Builder">
<name>reset_query</name>
<full_name>\Query\Query_Builder_Interface::reset_query()</full_name>
<docblock line="500">
<description>Clear out the class variables, so the next query can be run</description>
<long-description></long-description>
<tag name="return" line="500" description="" type="void">
<type>void</type>
</tag>
</docblock>
</method>
</interface>
<source>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</source>
</file>
<file path="classes/connection_manager.php" generated-path="classes.connection_manager.html" hash="e190cf16b50c5712bce7cae91a948bbc" package="Query">
<docblock line="0">
<description>Query</description>
<long-description>Free Query Builder / Database Abstraction Layer</long-description>
<tag name="package" line="0" description="Query"/>
<tag name="author" line="0" description="Timothy J. Warren"/>
<tag name="copyright" line="0" description="Copyright (c) 2012 - 2014"/>
<tag name="link" line="0" description="https://github.com/aviat4ion/Query" link="https://github.com/aviat4ion/Query"/>
<tag name="license" line="0" description="http://philsturgeon.co.uk/code/dbad-license" link="http://philsturgeon.co.uk/code/dbad-license"/>
</docblock>
<class final="false" abstract="false" namespace="Query" line="26" package="Query\Core">
<extends>\InvalidArgumentException</extends>
<name>BadDBDriverException</name>
<full_name>\Query\BadDBDriverException</full_name>
<docblock line="26">
<description>Generic exception for bad drivers</description>
<long-description></long-description>
<tag name="package" line="26" description="Query"/>
<tag name="subpackage" line="26" description="Core"/>
</docblock>
</class>
<class final="true" abstract="false" namespace="Query" line="37" package="Query\Core">
<extends/>
<name>Connection_Manager</name>
<full_name>\Query\Connection_Manager</full_name>
<docblock line="37">
<description>Connection manager class to manage connections for the
Query method</description>
<long-description></long-description>
<tag name="package" line="37" description="Query"/>
<tag name="subpackage" line="37" description="Core"/>
</docblock>
<property static="false" visibility="private" line="43" namespace="Query" package="Query\Core">
<name>$connections</name>
<default>array()</default>
<docblock line="43">
<description>Map of named database connections</description>
<long-description></long-description>
<tag name="var" line="43" description="" type="array" variable="">
<type>array</type>
</tag>
</docblock>
</property>
<property static="true" visibility="private" line="49" namespace="Query" package="Query\Core">
<name>$instance</name>
<default>null</default>
<docblock line="49">
<description>Class instance variable</description>
<long-description></long-description>
<tag name="var" line="49" description="" type="\Query\Connection_Manager" variable="">
<type link="Connection_Manager.html">\Query\Connection_Manager</type>
</tag>
</docblock>
</property>
<method final="false" abstract="false" static="false" visibility="private" namespace="Query" line="57" package="Query\Core">
<name>__construct</name>
<full_name>\Query\Connection_Manager::__construct()</full_name>
<docblock line="57">
<description>Private constructor to prevent multiple instances</description>
<long-description></long-description>
<tag name="codeCoverageIgnore" line="57" description=""/>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="private" namespace="Query" line="65" package="Query\Core">
<name>__clone</name>
<full_name>\Query\Connection_Manager::__clone()</full_name>
<docblock line="65">
<description>Private clone method to prevent cloning</description>
<long-description></long-description>
<tag name="codeCoverageIgnore" line="65" description=""/>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="private" namespace="Query" line="74" package="Query\Core">
<name>__wakeup</name>
<full_name>\Query\Connection_Manager::__wakeup()</full_name>
<docblock line="74">
<description>Make sure serialize/deseriaze doesn't work</description>
<long-description></long-description>
<tag name="codeCoverageIgnore" line="74" description=""/>
<tag name="throws" line="74" description="" type="\Query\DomainException">
<type link="DomainException.html">\Query\DomainException</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="true" visibility="public" namespace="Query" line="87" package="Query\Core">
<name>get_instance</name>
<full_name>\Query\Connection_Manager::get_instance()</full_name>
<docblock line="87">
<description>Return a connection manager instance</description>
<long-description></long-description>
<tag name="staticvar" line="87" description="null $instance"/>
<tag name="return" line="87" description="" type="\Query\Connection_Manager">
<type link="Connection_Manager.html">\Query\Connection_Manager</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="109" package="Query\Core">
<name>get_connection</name>
<full_name>\Query\Connection_Manager::get_connection()</full_name>
<docblock line="109">
<description>Returns the connection specified by the name given</description>
<long-description></long-description>
<tag name="param" line="109" description="" type="mixed" variable="$name">
<type>mixed</type>
</tag>
<tag name="return" line="109" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
<tag name="throws" line="109" description="" type="\Query\InvalidArgumentException">
<type link="InvalidArgumentException.html">\Query\InvalidArgumentException</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$name</name>
<default>''</default>
<type>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="135" package="Query\Core">
<name>connect</name>
<full_name>\Query\Connection_Manager::connect()</full_name>
<docblock line="135">
<description>Parse the passed parameters and return a connection</description>
<long-description></long-description>
<tag name="param" line="135" description="" type="array|object" variable="$params">
<type>array</type>
<type>object</type>
</tag>
<tag name="return" line="135" description="" type="\Query\Query_Builder">
<type link="Query_Builder.html">\Query\Query_Builder</type>
</tag>
<tag name="throws" line="135" description="" type="\Query\BadConnectionException">
<type link="BadConnectionException.html">\Query\BadConnectionException</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$params</name>
<default></default>
<type>array|object</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="private" namespace="Query" line="180" package="Query\Core">
<name>parse_params</name>
<full_name>\Query\Connection_Manager::parse_params()</full_name>
<docblock line="180">
<description>Parses params into a dsn and option array</description>
<long-description></long-description>
<tag name="param" line="180" description="" type="\Query\ArrayObject" variable="$params">
<type link="ArrayObject.html">\Query\ArrayObject</type>
</tag>
<tag name="throws" line="180" description="" type="\Query\BadDBDriverException">
<type link="BadDBDriverException.html">\Query\BadDBDriverException</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$params</name>
<default></default>
<type>\Query\ArrayObject</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="private" namespace="Query" line="220" package="Query\Core">
<name>create_dsn</name>
<full_name>\Query\Connection_Manager::create_dsn()</full_name>
<docblock line="220">
<description>Create the dsn from the db type and params</description>
<long-description></long-description>
<tag name="param" line="220" description="" type="string" variable="$dbtype">
<type>string</type>
</tag>
<tag name="param" line="220" description="" type="array|object" variable="$params">
<type>array</type>
<type>object</type>
</tag>
<tag name="return" line="220" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$dbtype</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$params</name>
<default></default>
<type>array|object</type>
</argument>
</method>
</class>
<source>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</source>
</file>
<file path="classes/db_util.php" generated-path="classes.db_util.html" hash="376992c10be7ca40f18a5818f671fc24" package="Query">
<docblock line="0">
<description>Query</description>
<long-description>Free Query Builder / Database Abstraction Layer</long-description>
<tag name="package" line="0" description="Query"/>
<tag name="author" line="0" description="Timothy J. Warren"/>
<tag name="copyright" line="0" description="Copyright (c) 2012 - 2014"/>
<tag name="link" line="0" description="https://github.com/aviat4ion/Query" link="https://github.com/aviat4ion/Query"/>
<tag name="license" line="0" description="http://philsturgeon.co.uk/code/dbad-license" link="http://philsturgeon.co.uk/code/dbad-license"/>
</docblock>
<class final="false" abstract="true" namespace="Query\Driver" line="26" package="Query\Drivers">
<extends/>
<name>DB_Util</name>
<full_name>\Query\Driver\DB_Util</full_name>
<docblock line="26">
<description>Abstract class defining database / table creation methods</description>
<long-description></long-description>
<tag name="package" line="26" description="Query"/>
<tag name="subpackage" line="26" description="Drivers"/>
</docblock>
<property static="false" visibility="private" line="31" namespace="Query\Driver" package="Query\Drivers">
<name>$conn</name>
<default></default>
<docblock line="31">
<description>Reference to the current connection object</description>
<long-description></long-description>
</docblock>
</property>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="38" package="Query\Drivers">
<name>__construct</name>
<full_name>\Query\Driver\DB_Util::__construct()</full_name>
<docblock line="38">
<description>Save a reference to the connection object for later use</description>
<long-description></long-description>
<tag name="param" line="38" description="" type="object" variable="$conn">
<type>object</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$conn</name>
<default></default>
<type>object</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="52" package="Query\Drivers">
<name>__call</name>
<full_name>\Query\Driver\DB_Util::__call()</full_name>
<docblock line="52">
<description>Enable calling driver methods</description>
<long-description></long-description>
<tag name="param" line="52" description="" type="string" variable="$method">
<type>string</type>
</tag>
<tag name="param" line="52" description="" type="array" variable="$args">
<type>array</type>
</tag>
<tag name="return" line="52" description="" type="mixed">
<type>mixed</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$method</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$args</name>
<default></default>
<type>array</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="71" package="Query\Drivers">
<name>create_table</name>
<full_name>\Query\Driver\DB_Util::create_table()</full_name>
<docblock line="71">
<description>Convienience public function to generate sql for creating a db table</description>
<long-description></long-description>
<tag name="param" line="71" description="" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="param" line="71" description="" type="array" variable="$fields">
<type>array</type>
</tag>
<tag name="param" line="71" description="" type="array" variable="$constraints">
<type>array</type>
</tag>
<tag name="param" line="71" description="" type="array" variable="$indexes">
<type>array</type>
</tag>
<tag name="return" line="71" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$name</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$fields</name>
<default></default>
<type>array</type>
</argument>
<argument line="0" by_reference="false">
<name>$constraints</name>
<default>array()</default>
<type>array</type>
</argument>
<argument line="0" by_reference="false">
<name>$indexes</name>
<default>array()</default>
<type>array</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="120" package="Query\Drivers">
<name>delete_table</name>
<full_name>\Query\Driver\DB_Util::delete_table()</full_name>
<docblock line="120">
<description>Drop the selected table</description>
<long-description></long-description>
<tag name="param" line="120" description="" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="return" line="120" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$name</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="true" static="false" visibility="public" namespace="Query\Driver" line="131" package="Query\Drivers">
<name>backup_structure</name>
<full_name>\Query\Driver\DB_Util::backup_structure()</full_name>
<docblock line="131">
<description>Return an SQL file with the database table structure</description>
<long-description></long-description>
<tag name="abstract" line="131" description=""/>
<tag name="return" line="131" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="true" static="false" visibility="public" namespace="Query\Driver" line="139" package="Query\Drivers">
<name>backup_data</name>
<full_name>\Query\Driver\DB_Util::backup_data()</full_name>
<docblock line="139">
<description>Return an SQL file with the database data as insert statements</description>
<long-description></long-description>
<tag name="abstract" line="139" description=""/>
<tag name="return" line="139" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
</class>
<source>eJy1Vltv2zYUfpZ+xalhQHLgSFvRp2Zum4s3oMiw1c2wh7QwaOnY4iJTGkll9YL89x2Soiw79tYBaWDENHku3/nOhfzhbV3UYXpyEsIJfGhQbmhh1j9KRLcBFw0vc5SQwhXTbMEUwvlCackyzSsB12yDstV6V7Psjq0wCLwteMcaXVQyCG74utLFBt4n8DuTEoU9zap6I/mq0MGlX0GcjeDld9+/hFPz9crKlVzcQRAUWtfqdZquuC6aRZJV65Tdc6ZfEZJ067PkGQqFTp7E64KXSjdyhZUgpaS5S7MqxzRfsPy0FSbFNAzTFE6f7S8MBVujIlJaLj9dSX6P8iwMG2Lxk92jHy3/nlXISqYU5LjkgosV5J72FGhRImQSmeV+jcRtrvbYhy0Rqln4Teda2TDZrqeri/lvmpfwEIaBwRKQ6gyXSEki5LoCXZDTxiSNVCoh0KW+WvxBKyOehkFN9plGGBqBs56lj+wegYF8YnDfECwrCSXZkED0GF2rT2FJtvYy1rx32SwoebBshDMzn9MhRdZkOrZyozB4CINgqAuuTt+YHZh4gMGjwfi86e5ingqXKFaWNoOW+y5de5ERYiM0dMf9E+oTtoEhkyvltiVSFVPe+RfMj5NAXuPW2thpt0S06kZgThTLudGaWy+x+9+jauwRjbyRb0KaMfdiW/s/e46+VWouK3HPUXBbivvkUWmuUKA0haz+LG1Fum6jBDHIF64Dj2XQtPuB/C05lrk6cODKlXGhD51ykeMX7JVLmz7n7Uj6LVqcW5ixBTT2AMYH3E5c2kfjPad+33dQVpXNWrhSoR5qT02bm0TNsJIrJvjfCGS0AiZac85aDn/RvAZng/aI1bUdYE57uoId+7fml0H+ufPkBIMg0psaI5i8gSRJxt3uNqCnZxbC3jZFFRAIZFkRt+QAU+D9GuGh8WTkTPjBf+EzrXFU6tahNtKxNQsvJpPO2QjeOmfwGqLI2DE9FvBlTG2B61pv4n7CRh2mLoDeqY/CRmD3jbiTPwCPoPWo+9wOR6VtNI8eChH2vuLC58/dS5rkqF1W1K50/XfG1S4lPYy9+jEghYVYy6pWW5YJCelHgygZioS+zrrdhLjjSiENdqvjOR0Z+gbwsLv7OCAyB4N/U+/HvW+kf9aZ6iVY3VqqSOasx9FPfnCYy80PD3vR+eu6Wtrf7QghZCRE4V7Opuc3U7g5v7iego2dyoLCh9gSYMUoAL6uS3q0xNEY6OOhjPoi0SiyQNtBYbb9zG6n3xVF6ABiSdcpteZXDrSvmT052dydPbv3TnQ1++XXp3FGexhnTpqGyMcP17DkdJHa+WFgd28h9xJyl30jewH4t81x2N3rZx//gp5KTT3vjLoB979gmYWpb04vSqnJLxXEGtv5/lwAjROL7dG8V6ciN5WVL+YNPeISetD/A2b8cjE=</source>
</file>
<file path="drivers/sqlite/sqlite_util.php" generated-path="drivers.sqlite.sqlite_util.html" hash="d58b75fea89d4939232faebd0358efd3" package="Query">
<docblock line="0">
<description>Query</description>
<long-description>Free Query Builder / Database Abstraction Layer</long-description>
<tag name="package" line="0" description="Query"/>
<tag name="author" line="0" description="Timothy J. Warren"/>
<tag name="copyright" line="0" description="Copyright (c) 2012 - 2014"/>
<tag name="link" line="0" description="https://github.com/aviat4ion/Query" link="https://github.com/aviat4ion/Query"/>
<tag name="license" line="0" description="http://philsturgeon.co.uk/code/dbad-license" link="http://philsturgeon.co.uk/code/dbad-license"/>
</docblock>
<class final="false" abstract="false" namespace="Query\Driver" line="26" package="Query\Drivers">
<extends>\Query\Driver\DB_Util</extends>
<name>SQLite_Util</name>
<full_name>\Query\Driver\SQLite_Util</full_name>
<docblock line="26">
<description>SQLite-specific backup, import and creation methods</description>
<long-description></long-description>
<tag name="package" line="26" description="Query"/>
<tag name="subpackage" line="26" description="Drivers"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="38" package="Query\Drivers">
<name>create_table</name>
<full_name>\Query\Driver\SQLite_Util::create_table()</full_name>
<docblock line="38">
<description>Convenience public function to create a new table</description>
<long-description></long-description>
<tag name="codeCoverageIgnore" line="38" description=""/>
<tag name="param" line="38" description="&lt;p&gt;//Name of the table&lt;/p&gt;" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="param" line="38" description="&lt;p&gt;//columns as straight array and/or column =&gt; type pairs&lt;/p&gt;" type="array" variable="$columns">
<type>array</type>
</tag>
<tag name="param" line="38" description="&lt;p&gt;// column =&gt; constraint pairs&lt;/p&gt;" type="array" variable="$constraints">
<type>array</type>
</tag>
<tag name="param" line="38" description="&lt;p&gt;// column =&gt; index pairs&lt;/p&gt;" type="array" variable="$indexes">
<type>array</type>
</tag>
<tag name="return" line="38" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$name</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$columns</name>
<default></default>
<type>array</type>
</argument>
<argument line="0" by_reference="false">
<name>$constraints</name>
<default>array()</default>
<type>array</type>
</argument>
<argument line="0" by_reference="false">
<name>$indexes</name>
<default>array()</default>
<type>array</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="94" package="Query\Drivers">
<name>delete_table</name>
<full_name>\Query\Driver\SQLite_Util::delete_table()</full_name>
<docblock line="94">
<description>SQL to drop the specified table</description>
<long-description></long-description>
<tag name="param" line="94" description="" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="return" line="94" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$name</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="108" package="Query\Drivers">
<name>backup_data</name>
<full_name>\Query\Driver\SQLite_Util::backup_data()</full_name>
<docblock line="108">
<description>Create an SQL backup file for the current database's data</description>
<long-description></long-description>
<tag name="codeCoverageIgnore" line="108" description=""/>
<tag name="param" line="108" description="" type="array" variable="$excluded">
<type>array</type>
</tag>
<tag name="return" line="108" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$excluded</name>
<default>array()</default>
<type>array</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="175" package="Query\Drivers">
<name>backup_structure</name>
<full_name>\Query\Driver\SQLite_Util::backup_structure()</full_name>
<docblock line="175">
<description>Create an SQL backup file for the current database's structure</description>
<long-description></long-description>
<tag name="return" line="175" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" static="false" visibility="public" line="26">
<name>query</name>
<docblock>
<description/>
<long-description/>
<tag name="magic" line="26"/>
<tag name="return" line="26" type="">
<type/>
</tag>
<tag name="method" line="26" description="" method_name="query"/>
</docblock>
</method>
<method final="false" static="false" visibility="public" line="26">
<name>quote</name>
<docblock>
<description/>
<long-description/>
<tag name="magic" line="26"/>
<tag name="return" line="26" type="">
<type/>
</tag>
<tag name="method" line="26" description="" method_name="quote"/>
</docblock>
</method>
</class>
<source>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</source>
</file>
<file path="drivers/pgsql/pgsql_util.php" generated-path="drivers.pgsql.pgsql_util.html" hash="f1e40b406d3900a3b72fad87e41c61ef" package="Query">
<docblock line="0">
<description>Query</description>
<long-description>Free Query Builder / Database Abstraction Layer</long-description>
<tag name="package" line="0" description="Query"/>
<tag name="author" line="0" description="Timothy J. Warren"/>
<tag name="copyright" line="0" description="Copyright (c) 2012 - 2014"/>
<tag name="link" line="0" description="https://github.com/aviat4ion/Query" link="https://github.com/aviat4ion/Query"/>
<tag name="license" line="0" description="http://philsturgeon.co.uk/code/dbad-license" link="http://philsturgeon.co.uk/code/dbad-license"/>
</docblock>
<class final="false" abstract="false" namespace="Query\Driver" line="26" package="Query\Drivers">
<extends>\Query\Driver\DB_Util</extends>
<name>PgSQL_Util</name>
<full_name>\Query\Driver\PgSQL_Util</full_name>
<docblock line="26">
<description>Posgres-specific backup, import and creation methods</description>
<long-description></long-description>
<tag name="package" line="26" description="Query"/>
<tag name="subpackage" line="26" description="Drivers"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="33" package="Query\Drivers">
<name>backup_structure</name>
<full_name>\Query\Driver\PgSQL_Util::backup_structure()</full_name>
<docblock line="33">
<description>Create an SQL backup file for the current database's structure</description>
<long-description></long-description>
<tag name="return" line="33" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="47" package="Query\Drivers">
<name>backup_data</name>
<full_name>\Query\Driver\PgSQL_Util::backup_data()</full_name>
<docblock line="47">
<description>Create an SQL backup file for the current database's data</description>
<long-description></long-description>
<tag name="param" line="47" description="" type="array" variable="$exclude">
<type>array</type>
</tag>
<tag name="return" line="47" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$exclude</name>
<default>array()</default>
<type>array</type>
</argument>
</method>
<method final="false" static="false" visibility="public" line="26">
<name>query</name>
<docblock>
<description/>
<long-description/>
<tag name="magic" line="26"/>
<tag name="return" line="26" type="">
<type/>
</tag>
<tag name="method" line="26" description="" method_name="query"/>
</docblock>
</method>
<method final="false" static="false" visibility="public" line="26">
<name>get_tables</name>
<docblock>
<description/>
<long-description/>
<tag name="magic" line="26"/>
<tag name="return" line="26" type="">
<type/>
</tag>
<tag name="method" line="26" description="" method_name="get_tables"/>
</docblock>
</method>
</class>
<markers>
<todo line="35">Implement Backup function</todo>
</markers>
<source>eJytVk1z2zYQPZO/YqvRlKRHEpNMTnac2pbk1h3VsiO5PcQZDkRCImqSoPHhWJPxf+/iQ5Tq9tJpfDEJ7L59+94C1Ief2rIN06OjEI7gVlOxxQfzfCkodQtwoVlVUAEpTIgiKyIpnK+kEiRXjDcwI1sqfNZZS/IHsqFBsMOCM6JVyUUQLFnNVbmFX0fwBxGCNnY35+1WsE2pgvHuCeI8gXdv3r6Dofn33sZVrHmAICiVauVxmm6YKvVqlPM6JU+MqPfIJN3XrFhOG0ldPIa3Jauk0mJDeYNJI/2Q5rygabEixdAHY2IahmkKw+/2F4YNqalEUbyW9xPBnqg4CXeS33C5EVQOZUtztmY5rFBA3Q6A1S0XCkhTQC4osUrXFJUs5CutYd+21Kvdoisk7bLLg5o90wIeTXSM9rFmA335WCWHMWgM2cKGqgydrqiMEytLXhEp4WazuJ1ld4pVQJ8VbQoJkwv3/i0MA9NSgFhjw5cidcBw3xCsWUVhzQWokkKujf8KCj9PkQQkpHN0iBoIC3MmKL434KiapTQMWr1Cu2CtGzd8Dj3rspFv8C0MArRxOZ/M4apuK1qbWheeh8/EGI8fRSdh8GL4f1/r/58e5nEvRUsEqb05ffqcV7qg/1kkAxnvsk8tWJx4vfrObjiFviqZHH48HAEcV6voJasU3gNcK8vap2y5hoI3kYKvpFEYydYx/AC0btW2K2fq2EIHlSyDrGDrdewXB11zWDOwpgR9LNdqleGkYo4xy5H5mToWpisrJCV5CXz1J80NCVwxCztkIBI725PwaIvpbDpemuvu0/w36EUjlLHGnGQU9cxYYKQ4VMUdHntq3C7Wy3yEOcYf11Tl5XlVxfc3k/nx8eV0Of4lO18s5mOnomE+sWKRogDFbQt2Fth6Lyow6fQzGbgR51w3Kt5VS+ADvE0g541ijaYO2BO9vpvNukrXZOXmi1e6bsBeRrCy51uZ42/2HuhWAl97IkIqEPyrBXRZBvTMWWVCOxKf33zxLfUZ3p5CZZjX2Rrv2/Xjb/BdIA4rLphDKU1I59ROS2MVYhmznFuBee0G5olUGqfShrgipsqt5ljE7RmEhtICbztsVm1b+k+UmrSxY/qj9XYA0aOBiJIBeOh/zYnMhERdTNhFZf5Kxam6ul5MPy3h6no5fzVTEOM7Xu0VfnziqDfoGSSvs9lP4Pfz2d10AfFB2GBXbhQlJ9FJeEhsb/ffbPj8xU5kx8o28xK+Gtl98uEhG51C7765b3odA3ztIYUD/GRk1roz6i+hAxR7pb6Yr+kUv2A4Xu0GVzON34qR+cXxF6zQer4=</source>
</file>
<file path="drivers/pgsql/pgsql_sql.php" generated-path="drivers.pgsql.pgsql_sql.html" hash="f4e758bc62a19f2f626bb18e9987e998" package="Default">
<docblock line="0">
<description>Query</description>
<long-description>Free Query Builder / Database Abstraction Layer</long-description>
<tag name="author" line="0" description="Timothy J. Warren"/>
<tag name="copyright" line="0" description="Copyright (c) 2012 - 2014"/>
<tag name="link" line="0" description="https://github.com/aviat4ion/Query" link="https://github.com/aviat4ion/Query"/>
<tag name="license" line="0" description="http://philsturgeon.co.uk/code/dbad-license" link="http://philsturgeon.co.uk/code/dbad-license"/>
</docblock>
<class final="false" abstract="false" namespace="Query\Driver" line="23" package="Query\Drivers">
<extends>\Query\Driver\Abstract_SQL</extends>
<name>PgSQL_SQL</name>
<full_name>\Query\Driver\PgSQL_SQL</full_name>
<docblock line="23">
<description>PostgreSQL specifc SQL</description>
<long-description></long-description>
<tag name="package" line="23" description="Query"/>
<tag name="subpackage" line="23" description="Drivers"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="31" package="Query\Drivers">
<name>explain</name>
<full_name>\Query\Driver\PgSQL_SQL::explain()</full_name>
<docblock line="31">
<description>Get the query plan for the sql query</description>
<long-description></long-description>
<tag name="param" line="31" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="return" line="31" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$sql</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="43" package="Query\Drivers">
<name>random</name>
<full_name>\Query\Driver\PgSQL_SQL::random()</full_name>
<docblock line="43">
<description>Random ordering keyword</description>
<long-description></long-description>
<tag name="return" line="43" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="55" package="Query\Drivers">
<name>db_list</name>
<full_name>\Query\Driver\PgSQL_SQL::db_list()</full_name>
<docblock line="55">
<description>Returns sql to list other databases</description>
<long-description></long-description>
<tag name="return" line="55" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="71" package="Query\Drivers">
<name>table_list</name>
<full_name>\Query\Driver\PgSQL_SQL::table_list()</full_name>
<docblock line="71">
<description>Returns sql to list tables</description>
<long-description></long-description>
<tag name="return" line="71" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="89" package="Query\Drivers">
<name>system_table_list</name>
<full_name>\Query\Driver\PgSQL_SQL::system_table_list()</full_name>
<docblock line="89">
<description>Returns sql to list system tables</description>
<long-description></long-description>
<tag name="return" line="89" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="107" package="Query\Drivers">
<name>view_list</name>
<full_name>\Query\Driver\PgSQL_SQL::view_list()</full_name>
<docblock line="107">
<description>Returns sql to list views</description>
<long-description></long-description>
<tag name="return" line="107" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="125" package="Query\Drivers">
<name>trigger_list</name>
<full_name>\Query\Driver\PgSQL_SQL::trigger_list()</full_name>
<docblock line="125">
<description>Returns sql to list triggers</description>
<long-description></long-description>
<tag name="return" line="125" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="142" package="Query\Drivers">
<name>function_list</name>
<full_name>\Query\Driver\PgSQL_SQL::function_list()</full_name>
<docblock line="142">
<description>Return sql to list functions</description>
<long-description></long-description>
<tag name="return" line="142" description="" type="NULL">
<type>NULL</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="154" package="Query\Drivers">
<name>procedure_list</name>
<full_name>\Query\Driver\PgSQL_SQL::procedure_list()</full_name>
<docblock line="154">
<description>Return sql to list stored procedures</description>
<long-description></long-description>
<tag name="return" line="154" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="172" package="Query\Drivers">
<name>sequence_list</name>
<full_name>\Query\Driver\PgSQL_SQL::sequence_list()</full_name>
<docblock line="172">
<description>Return sql to list sequences</description>
<long-description></long-description>
<tag name="return" line="172" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="190" package="Query\Drivers">
<name>column_list</name>
<full_name>\Query\Driver\PgSQL_SQL::column_list()</full_name>
<docblock line="190">
<description>Return sql to list columns of the specified table</description>
<long-description></long-description>
<tag name="param" line="190" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="190" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="213" package="Query\Drivers">
<name>type_list</name>
<full_name>\Query\Driver\PgSQL_SQL::type_list()</full_name>
<docblock line="213">
<description>SQL to show list of field types</description>
<long-description></long-description>
<tag name="return" line="213" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
</class>
<source>eJzVV21v2zYQ/iz9ipsxQHaQWG3RT0uGzU7UvcCNUztbN2CYQEu0RFiiVJJKYmTZb99RpOSXrKsddM6WL6Gp5+54z73wePZNmZauf3TkwhG8q6hY4kKv3whKzQYMK5bFVIAPF0SRGZEUBjOpBIkUKziMyJIKK/UtqVRaCHCca5YXKl3Cj314T4SgvP4cFeVSsCRVznmzgm7Ug1cvXr6CE/3vdY3LGF+gklSpUn7l+wlTaTXrR0XukxtG1Gu06zen1eiIcjxVjUd4mbJMqkoktOAo1K8WflTE1I9nJD6xYBT0Xdf34eSz/bkuJzmVJYksc79dCHZDxanbEHxVSJUIOn03AlnSiM0jwHXDHQouSEJh5ZisZs2mUSXrY0cZkRKuEpQNtS56pyiPZRuVevPedR1t1kFF31EFKqXwoY5nmREOc4yS3pIfMrOtgTUYzyFIDqiK8QS+RIDZFhQp5XZfb/muU1Yz5BPmFTe5QO9QOeNdLdVznXvXcaxYJ/jlajT44RJ+DibD8TSAe4156Jy6zoM+6ecNROv5hPC4yKEQmMDanQVd3uKPlbO7eCVqJd1NhzyYDC4vxm+7Pe/f9qE2KOtQqQIyJhVgbWFFxrYe5X7+xLNQK9ly6OzsTCej4zjTYBScX0MH1euM7sCbyfgtdMokbAx2NOz998EkWENdjq8BA9z1FM0xDRR94R2365deT8uMJxfBBIa/rokNpucuGn4GEtGXbF/uapnd6DPQ2km9bUhkHCsvJ1pXKKOU5qTTN0i5TqqRVcsSCfoavOEAK+Z6MBwFngZh4jUQq8OSrz86XQ8jFWGksiLxjsF7bNLrnT4T5XIpMSOexLwRDf+rAfgfkH/D6O2epGuRfyQbWrY1dKtd1AbXWTUMrLeLnUlraV/Z+eJP8H5HSW+zs6wAz9hacLZJ9H29X3MxUjtl99GnUtqeYCOprf4nNo2DcblBZcPOYy4vfxqNPsJks/g7KrXY4d2QqhA0hlIUEY0rsW/3a+V2a32iqBTjuzU/i90s1Ho8ZdGTU6VtkthBwypWoS1Z7KU2C73DtcHNQFCcd3m09/VjxXbjP9K80myLfs2bnt07GrDGtkUvGI/r22a61dEaTQdtaBukRUVW5djjirl5NZj0wHyuL8GPvR3aj7tRbIwYgo3sJ2jGSZ5xkoVlIZnWcFznp1WjGTMbemqtr/KN7zGdkypTZo/JkFdZpm1aUEr0UwqbZU7uWF7lYUZ5olLzlVc5vieisBTIg0TLbYwfF0PfcreK92ou0cG+N64+bMZ827VDFIt+NmLAZVrc2lfGHDDIGUYZydv3LtOFv9uYtiy35gbbXLAq8Ec9g61fYg28uf7/CL31dtPObLOtKmoEWyYf8P0f8Fi7WSaY7Rhqzsp+mZZ/AfxYmkI=</source>
</file>
<file path="classes/table_builder.php" generated-path="classes.table_builder.html" hash="b18ae00d831c70bbead5092d90eaa900" package="Query">
<docblock line="0">
<description>Query</description>
<long-description>Free Query Builder / Database Abstraction Layer</long-description>
<tag name="package" line="0" description="Query"/>
<tag name="author" line="0" description="Timothy J. Warren"/>
<tag name="copyright" line="0" description="Copyright (c) 2012 - 2014"/>
<tag name="link" line="0" description="https://github.com/aviat4ion/Query" link="https://github.com/aviat4ion/Query"/>
<tag name="license" line="0" description="http://philsturgeon.co.uk/code/dbad-license" link="http://philsturgeon.co.uk/code/dbad-license"/>
</docblock>
<class final="false" abstract="false" namespace="Query" line="24" package="Query\Table_Builder">
<extends/>
<implements>\Query\Table_Builder_Interface</implements>
<name>Table_Builder</name>
<full_name>\Query\Table_Builder</full_name>
<docblock line="24">
<description>Abstract class defining database / table creation methods</description>
<long-description></long-description>
<tag name="package" line="24" description="Query"/>
<tag name="subpackage" line="24" description="Table_Builder"/>
</docblock>
<property static="false" visibility="protected" line="30" namespace="Query" package="Query\Table_Builder">
<name>$name</name>
<default>''</default>
<docblock line="30">
<description>The name of the current table</description>
<long-description></long-description>
<tag name="var" line="30" description="" type="string" variable="">
<type>string</type>
</tag>
</docblock>
</property>
<property static="false" visibility="private" line="36" namespace="Query" package="Query\Table_Builder">
<name>$driver</name>
<default>NULL</default>
<docblock line="36">
<description>Driver for the current db</description>
<long-description></long-description>
<tag name="var" line="36" description="" type="\Query\Driver_Interface" variable="">
<type link="Driver_Interface.html">\Query\Driver_Interface</type>
</tag>
</docblock>
</property>
<property static="false" visibility="private" line="42" namespace="Query" package="Query\Table_Builder">
<name>$table_options</name>
<default>array()</default>
<docblock line="42">
<description>Options for the current table</description>
<long-description></long-description>
<tag name="var" line="42" description="" type="array" variable="">
<type>array</type>
</tag>
</docblock>
</property>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="54" package="Query\Table_Builder">
<name>__construct</name>
<full_name>\Query\Table_Builder::__construct()</full_name>
<docblock line="54">
<description>Constructor</description>
<long-description></long-description>
<tag name="param" line="54" description="" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="param" line="54" description="" type="array" variable="$options">
<type>array</type>
</tag>
<tag name="param" line="54" description="" type="\Query\Driver_Interface" variable="$driver">
<type link="Driver_Interface.html">\Query\Driver_Interface</type>
</tag>
<tag name="return" line="54" description="" type="\Query\Table_Builder">
<type link="Table_Builder.html">\Query\Table_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$name</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$options</name>
<default>array()</default>
<type>array</type>
</argument>
<argument line="0" by_reference="false">
<name>$driver</name>
<default>NULL</default>
<type>\Query\Driver_Interface</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="75" package="Query\Table_Builder">
<name>add_column</name>
<full_name>\Query\Table_Builder::add_column()</full_name>
<docblock line="75">
<description></description>
<long-description></long-description>
</docblock>
<argument line="0" by_reference="false">
<name>$column_name</name>
<default></default>
<type/>
</argument>
<argument line="0" by_reference="false">
<name>$type</name>
<default>NULL</default>
<type/>
</argument>
<argument line="0" by_reference="false">
<name>$options</name>
<default>array()</default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="80" package="Query\Table_Builder">
<name>remove_column</name>
<full_name>\Query\Table_Builder::remove_column()</full_name>
<docblock line="80">
<description></description>
<long-description></long-description>
</docblock>
<argument line="0" by_reference="false">
<name>$column_name</name>
<default></default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="85" package="Query\Table_Builder">
<name>rename_column</name>
<full_name>\Query\Table_Builder::rename_column()</full_name>
<docblock line="85">
<description></description>
<long-description></long-description>
</docblock>
<argument line="0" by_reference="false">
<name>$old_name</name>
<default></default>
<type/>
</argument>
<argument line="0" by_reference="false">
<name>$new_name</name>
<default></default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="90" package="Query\Table_Builder">
<name>change_column</name>
<full_name>\Query\Table_Builder::change_column()</full_name>
<docblock line="90">
<description></description>
<long-description></long-description>
</docblock>
<argument line="0" by_reference="false">
<name>$column_name</name>
<default></default>
<type/>
</argument>
<argument line="0" by_reference="false">
<name>$new_column_type</name>
<default></default>
<type/>
</argument>
<argument line="0" by_reference="false">
<name>$options</name>
<default>array()</default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="95" package="Query\Table_Builder">
<name>has_column</name>
<full_name>\Query\Table_Builder::has_column()</full_name>
<docblock line="95">
<description></description>
<long-description></long-description>
</docblock>
<argument line="0" by_reference="false">
<name>$column_name</name>
<default></default>
<type/>
</argument>
<argument line="0" by_reference="false">
<name>$options</name>
<default>array()</default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="104" package="Query\Table_Builder">
<name>add_index</name>
<full_name>\Query\Table_Builder::add_index()</full_name>
<docblock line="104">
<description></description>
<long-description></long-description>
</docblock>
<argument line="0" by_reference="false">
<name>$columns</name>
<default></default>
<type/>
</argument>
<argument line="0" by_reference="false">
<name>$options</name>
<default>array()</default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="109" package="Query\Table_Builder">
<name>remove_index</name>
<full_name>\Query\Table_Builder::remove_index()</full_name>
<docblock line="109">
<description></description>
<long-description></long-description>
</docblock>
<argument line="0" by_reference="false">
<name>$columns</name>
<default></default>
<type/>
</argument>
<argument line="0" by_reference="false">
<name>$options</name>
<default>array()</default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="114" package="Query\Table_Builder">
<name>remove_index_by_name</name>
<full_name>\Query\Table_Builder::remove_index_by_name()</full_name>
<docblock line="114">
<description></description>
<long-description></long-description>
</docblock>
<argument line="0" by_reference="false">
<name>$name</name>
<default></default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="119" package="Query\Table_Builder">
<name>has_index</name>
<full_name>\Query\Table_Builder::has_index()</full_name>
<docblock line="119">
<description></description>
<long-description></long-description>
</docblock>
<argument line="0" by_reference="false">
<name>$columns</name>
<default></default>
<type/>
</argument>
<argument line="0" by_reference="false">
<name>$options</name>
<default>array()</default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="128" package="Query\Table_Builder">
<name>add_foreign_key</name>
<full_name>\Query\Table_Builder::add_foreign_key()</full_name>
<docblock line="128">
<description></description>
<long-description></long-description>
</docblock>
<argument line="0" by_reference="false">
<name>$columns</name>
<default></default>
<type/>
</argument>
<argument line="0" by_reference="false">
<name>$referenced_table</name>
<default></default>
<type/>
</argument>
<argument line="0" by_reference="false">
<name>$referenced_columns</name>
<default>array('id')</default>
<type/>
</argument>
<argument line="0" by_reference="false">
<name>$options</name>
<default>array()</default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="133" package="Query\Table_Builder">
<name>drop_foreign_key</name>
<full_name>\Query\Table_Builder::drop_foreign_key()</full_name>
<docblock line="133">
<description></description>
<long-description></long-description>
</docblock>
<argument line="0" by_reference="false">
<name>$columns</name>
<default></default>
<type/>
</argument>
<argument line="0" by_reference="false">
<name>$constraint</name>
<default>NULL</default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="138" package="Query\Table_Builder">
<name>has_foreign_key</name>
<full_name>\Query\Table_Builder::has_foreign_key()</full_name>
<docblock line="138">
<description></description>
<long-description></long-description>
</docblock>
<argument line="0" by_reference="false">
<name>$columns</name>
<default></default>
<type/>
</argument>
<argument line="0" by_reference="false">
<name>$constraint</name>
<default>NULL</default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="147" package="Query\Table_Builder">
<name>exists</name>
<full_name>\Query\Table_Builder::exists()</full_name>
<docblock line="147">
<description></description>
<long-description></long-description>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="152" package="Query\Table_Builder">
<name>drop</name>
<full_name>\Query\Table_Builder::drop()</full_name>
<docblock line="152">
<description></description>
<long-description></long-description>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="157" package="Query\Table_Builder">
<name>rename</name>
<full_name>\Query\Table_Builder::rename()</full_name>
<docblock line="157">
<description></description>
<long-description></long-description>
</docblock>
<argument line="0" by_reference="false">
<name>$new_table_name</name>
<default></default>
<type/>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="162" package="Query\Table_Builder">
<name>get_columns</name>
<full_name>\Query\Table_Builder::get_columns()</full_name>
<docblock line="162">
<description></description>
<long-description></long-description>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="172" package="Query\Table_Builder">
<name>create</name>
<full_name>\Query\Table_Builder::create()</full_name>
<docblock line="172">
<description></description>
<long-description></long-description>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="177" package="Query\Table_Builder">
<name>update</name>
<full_name>\Query\Table_Builder::update()</full_name>
<docblock line="177">
<description></description>
<long-description></long-description>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="182" package="Query\Table_Builder">
<name>save</name>
<full_name>\Query\Table_Builder::save()</full_name>
<docblock line="182">
<description></description>
<long-description></long-description>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="191" package="Query\Table_Builder">
<name>reset</name>
<full_name>\Query\Table_Builder::reset()</full_name>
<docblock line="191">
<description></description>
<long-description></long-description>
</docblock>
</method>
</class>
<source>eJy9V12P0zoQfXZ+xSBV2nRFN/cinnZZWC5cJGABIe3VfYyceNpYmziR7RQitP8df6bd0m61qKUvdcYzZ8bnjGPnxauu6pLs9DSBU/jaoxzMwI7fSURvgH96XjOUkMFbqmlBFcLrQmlJS81bAdd0QBmirjpa3tIFEhKx4Ir2umolITe8aXU1wIcz+J9KicLNlm03SL6oNHkTR5CWU3j219/PYGb/nju/motbIKTSulPnWbbguuqLs7JtMrrkVD83lWSrnDUvUSj0/sa9q3itdC8X2AoTdNbfZmXLMGMFZbPgbAKzJMkymB3slySCNqgMKYHLiyRyHRmEsqZKAcM5F1wsgEWKMzCDGqGUSB3PDRoemdpgGlaLVn0RjTc2NA/CuYX5NPfswJuuxgaF3pjI3wuNcm6r/pEkxFZMTIKbCsGuB9o5aDMue6ui9nU6j6sllWDWZRZin7OEdLLVWGpkMHGhl3BycrGG+Vbypalk3sp7kKxY4XmXVU0jMl9SjTBhHuISPv93fb2O/aWzvKlfwDfqNb1Ih01Q55O3AeHSO6VTB3/YDhnLfWMyadmXupX22RfYUUmbQKmncN3uqoJJKHN9ZpO0SJP3kWj2gtjoksBAX5j9APNe+N2d52WsK3X5n475VrQ83ZkvyDJNyI+EkImuuJq9DJ3g4CyjhM8hhSeATaeHNMJPTZCLimFbNckbNLs63eayqtToRsjdWiauctHXdRqq/CXVWHxwGOMDc87NGO8O3g8W7onphbpvBHwKW/7gPbepMmXM6GxzphP/nwet9dBhEHGb8k5Yz8MmpsSmXeI22AeDrMMY1NYsFiLw277gsqJisTVjiA8Wu6ZHLqaiagfuQyjHaI33guH3P9sZ3KaM61a/1wYHw8iLwVHv30Z7JHtU1mOo9a6VyBcCPuLwZzWb+8T5LQ7r65c4R7PHSmS5e1feNwW/kZ0Tzk6mj9SKybbbld0fJZSbQ3jtXNgt32/AHENEd07OvnGG4yXs6Brid660SvcQ/dC8f5Wm7sXnz8U9G2aBOnbAGu5xKH1d3rvTHp1Od4vGh+jqO7bHQ9FlmCckXjiiTPYCQV5BsK6wCDmPxliCu/EEm0SF2pp2KOhmx4ru7NfJv4K5C7hTtOhr05XyzH7E/QSNxc9L</source>
</file>
<file path="classes/driver_interface.php" generated-path="classes.driver_interface.html" hash="48e91d9f82119687b1c8515b198f719b" package="Query">
<docblock line="0">
<description>Query</description>
<long-description>Free Query Builder / Database Abstraction Layer</long-description>
<tag name="package" line="0" description="Query"/>
<tag name="author" line="0" description="Timothy J. Warren"/>
<tag name="copyright" line="0" description="Copyright (c) 2012 - 2014"/>
<tag name="link" line="0" description="https://github.com/aviat4ion/Query" link="https://github.com/aviat4ion/Query"/>
<tag name="license" line="0" description="http://philsturgeon.co.uk/code/dbad-license" link="http://philsturgeon.co.uk/code/dbad-license"/>
</docblock>
<interface namespace="Query\Driver" line="24" package="Query\Drivers">
<name>Driver_Interface</name>
<full_name>\Query\Driver\Driver_Interface</full_name>
<docblock line="24">
<description>PDO Interface to implement for database drivers</description>
<long-description></long-description>
<tag name="package" line="24" description="Query"/>
<tag name="subpackage" line="24" description="Drivers"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="35" package="Query\Drivers">
<name>__construct</name>
<full_name>\Query\Driver\Driver_Interface::__construct()</full_name>
<docblock line="35">
<description>Constructor/Connection method</description>
<long-description></long-description>
<tag name="param" line="35" description="" type="string" variable="$dsn">
<type>string</type>
</tag>
<tag name="param" line="35" description="" type="\Query\Driver\[string]" variable="$username">
<type link="[string].html">\Query\Driver\[string]</type>
</tag>
<tag name="param" line="35" description="" type="\Query\Driver\[string]" variable="$password">
<type link="[string].html">\Query\Driver\[string]</type>
</tag>
<tag name="param" line="35" description="" type="\Query\Driver\[array]" variable="$driver_options">
<type link="[array].html">\Query\Driver\[array]</type>
</tag>
<tag name="return" line="35" description="" type="void">
<type>void</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$dsn</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$username</name>
<default>NULL</default>
<type>\Query\Driver\[string]</type>
</argument>
<argument line="0" by_reference="false">
<name>$password</name>
<default>NULL</default>
<type>\Query\Driver\[string]</type>
</argument>
<argument line="0" by_reference="false">
<name>$driver_options</name>
<default>array()</default>
<type>\Query\Driver\[array]</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="42" package="Query\Drivers">
<name>beginTransaction</name>
<full_name>\Query\Driver\Driver_Interface::beginTransaction()</full_name>
<docblock line="42">
<description>Begin a transaction</description>
<long-description></long-description>
<tag name="return" line="42" description="" type="bool">
<type>bool</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="49" package="Query\Drivers">
<name>commit</name>
<full_name>\Query\Driver\Driver_Interface::commit()</full_name>
<docblock line="49">
<description>Commit a transaction</description>
<long-description></long-description>
<tag name="return" line="49" description="" type="bool">
<type>bool</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="56" package="Query\Drivers">
<name>errorCode</name>
<full_name>\Query\Driver\Driver_Interface::errorCode()</full_name>
<docblock line="56">
<description>Return the current error code</description>
<long-description></long-description>
<tag name="return" line="56" description="" type="mixed">
<type>mixed</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="63" package="Query\Drivers">
<name>errorInfo</name>
<full_name>\Query\Driver\Driver_Interface::errorInfo()</full_name>
<docblock line="63">
<description>Return information about the current error</description>
<long-description></long-description>
<tag name="return" line="63" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="71" package="Query\Drivers">
<name>exec</name>
<full_name>\Query\Driver\Driver_Interface::exec()</full_name>
<docblock line="71">
<description>Execute an SQL statement and return the number of affected rows</description>
<long-description></long-description>
<tag name="param" line="71" description="" type="string" variable="$statement">
<type>string</type>
</tag>
<tag name="return" line="71" description="" type="int">
<type>int</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$statement</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="79" package="Query\Drivers">
<name>getAttribute</name>
<full_name>\Query\Driver\Driver_Interface::getAttribute()</full_name>
<docblock line="79">
<description>Get a connection attribute for the current db driver</description>
<long-description></long-description>
<tag name="param" line="79" description="" type="int" variable="$attribute">
<type>int</type>
</tag>
<tag name="returm" line="79" description="mixed"/>
</docblock>
<argument line="0" by_reference="false">
<name>$attribute</name>
<default></default>
<type>int</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="86" package="Query\Drivers">
<name>rollback</name>
<full_name>\Query\Driver\Driver_Interface::rollback()</full_name>
<docblock line="86">
<description>Rollback a transaction</description>
<long-description></long-description>
<tag name="return" line="86" description="" type="bool">
<type>bool</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="94" package="Query\Drivers">
<name>setAttribute</name>
<full_name>\Query\Driver\Driver_Interface::setAttribute()</full_name>
<docblock line="94">
<description>Set a connection attribute</description>
<long-description></long-description>
<tag name="param" line="94" description="" type="int" variable="$attribute">
<type>int</type>
</tag>
<tag name="param" line="94" description="" type="mixed" variable="$value">
<type>mixed</type>
</tag>
<tag name="return" line="94" description="" type="bool">
<type>bool</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$attribute</name>
<default></default>
<type>int</type>
</argument>
<argument line="0" by_reference="false">
<name>$value</name>
<default></default>
<type>mixed</type>
</argument>
</method>
</interface>
<source>eJytVU1P20AQPRuJ/zCHHAKCuEWcSlGBhFZUES2Fqoe2inbtib3C3rX2IxBV/e+d9TpxgpOiiuYSe2fevDdf67fvqrza3Yn393d3YB9uHOq5f6rf3mvEcAQXThQpaohhxCzjzCCcc2M1S6xQEsZsjnqJO6tYcs8yjKJlPDhjzuZKR9GdKJXN5/BxAN+Y1iiDOVHVXIsst9Fw8QT9ZA+OXr0+gkP/dxwcCyHvIYpyayvzJo4zYXPHB4kqYzYTzB6TnHiFthAJSoMBQP5VLgpjnc5QSUIN3H2cqBTjlLP0sHH2yHh3h8oSw+F/+/mAkpVoqDpNWX+MtJihPqm5mhZ8Hn2CK2lRT72bVSDKqsASpYWp0pAuyp/WUNMpOqwkbxxfnI5ad0pNLAnC+aRl/OXFRLWaiGIMlaQ2u8QqHdOzxNDwEqmbae0S/IhesxLIV8gMeqmRa+ffg+En9JxB7cuwxVwxYx6UTtfNNChsTtaQ9ERVXoRpfDRSPyXMlAgoyi+qHKdmwtTJoHcySRaJ9L24g1bI6fXX8figZW7ea8qnjHAazvt7eyfrdbrATEhgQCshTdiK1eo0GrlSxVaN3Ie4a/H9pxxDVZbCvowkqWN0Qn8JUJsjJM5vpQXUmubNL8cGjlI84vZq19AhIbfxCEmzXLLamXHlbJd5A2ld+r+TXlHgDunlIybOIjAJtzdjmlFmw0IxmYJuM5eu5HTHqSmw6ZQGHcmqHsz2KV9GWtcpmoONKklLvwU+lQof0Dc4aTeNWSLjXr5f/9Uypby5BLoCSQH0lshVdeUzrcvQni9w/TZEp4+qKDhdLS8bRt1E6XTsdmsVnk8zmOosoTdjhcN/UGQ2p3/QRPI6f9ffhUsaHRqU5npY3qeD+nP6BwBIKpQ=</source>
</file>
<file path="drivers/mysql/mysql_sql.php" generated-path="drivers.mysql.mysql_sql.html" hash="727d54e54c47cecfecbfa95577940305" package="Query">
<docblock line="0">
<description>Query</description>
<long-description>Free Query Builder / Database Abstraction Layer</long-description>
<tag name="package" line="0" description="Query"/>
<tag name="author" line="0" description="Timothy J. Warren"/>
<tag name="copyright" line="0" description="Copyright (c) 2012 - 2014"/>
<tag name="link" line="0" description="https://github.com/aviat4ion/Query" link="https://github.com/aviat4ion/Query"/>
<tag name="license" line="0" description="http://philsturgeon.co.uk/code/dbad-license" link="http://philsturgeon.co.uk/code/dbad-license"/>
</docblock>
<class final="false" abstract="false" namespace="Query\Driver" line="24" package="Query\Drivers">
<extends>\Query\Driver\Abstract_SQL</extends>
<name>MySQL_SQL</name>
<full_name>\Query\Driver\MySQL_SQL</full_name>
<docblock line="24">
<description>MySQL specifc SQL</description>
<long-description></long-description>
<tag name="package" line="24" description="Query"/>
<tag name="subpackage" line="24" description="Drivers"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="34" package="Query\Drivers">
<name>limit</name>
<full_name>\Query\Driver\MySQL_SQL::limit()</full_name>
<docblock line="34">
<description>Limit clause</description>
<long-description></long-description>
<tag name="param" line="34" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="param" line="34" description="" type="int" variable="$limit">
<type>int</type>
</tag>
<tag name="param" line="34" description="" type="int" variable="$offset">
<type>int</type>
</tag>
<tag name="return" line="34" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$sql</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$limit</name>
<default></default>
<type>int</type>
</argument>
<argument line="0" by_reference="false">
<name>$offset</name>
<default>FALSE</default>
<type>int</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="52" package="Query\Drivers">
<name>explain</name>
<full_name>\Query\Driver\MySQL_SQL::explain()</full_name>
<docblock line="52">
<description>Get the query plan for the sql query</description>
<long-description></long-description>
<tag name="param" line="52" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="return" line="52" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$sql</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="64" package="Query\Drivers">
<name>random</name>
<full_name>\Query\Driver\MySQL_SQL::random()</full_name>
<docblock line="64">
<description>Random ordering keyword</description>
<long-description></long-description>
<tag name="return" line="64" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="76" package="Query\Drivers">
<name>db_list</name>
<full_name>\Query\Driver\MySQL_SQL::db_list()</full_name>
<docblock line="76">
<description>Returns sql to list other databases</description>
<long-description></long-description>
<tag name="return" line="76" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="89" package="Query\Drivers">
<name>table_list</name>
<full_name>\Query\Driver\MySQL_SQL::table_list()</full_name>
<docblock line="89">
<description>Returns sql to list tables</description>
<long-description></long-description>
<tag name="param" line="89" description="" type="string" variable="$database">
<type>string</type>
</tag>
<tag name="return" line="89" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$database</name>
<default>''</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="103" package="Query\Drivers">
<name>system_table_list</name>
<full_name>\Query\Driver\MySQL_SQL::system_table_list()</full_name>
<docblock line="103">
<description>Overridden in MySQL class</description>
<long-description></long-description>
<tag name="return" line="103" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="116" package="Query\Drivers">
<name>view_list</name>
<full_name>\Query\Driver\MySQL_SQL::view_list()</full_name>
<docblock line="116">
<description>Returns sql to list views</description>
<long-description></long-description>
<tag name="return" line="116" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="128" package="Query\Drivers">
<name>trigger_list</name>
<full_name>\Query\Driver\MySQL_SQL::trigger_list()</full_name>
<docblock line="128">
<description>Returns sql to list triggers</description>
<long-description></long-description>
<tag name="return" line="128" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="140" package="Query\Drivers">
<name>function_list</name>
<full_name>\Query\Driver\MySQL_SQL::function_list()</full_name>
<docblock line="140">
<description>Return sql to list functions</description>
<long-description></long-description>
<tag name="return" line="140" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="152" package="Query\Drivers">
<name>procedure_list</name>
<full_name>\Query\Driver\MySQL_SQL::procedure_list()</full_name>
<docblock line="152">
<description>Return sql to list stored procedures</description>
<long-description></long-description>
<tag name="return" line="152" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="164" package="Query\Drivers">
<name>sequence_list</name>
<full_name>\Query\Driver\MySQL_SQL::sequence_list()</full_name>
<docblock line="164">
<description>Return sql to list sequences</description>
<long-description></long-description>
<tag name="return" line="164" description="" type="NULL">
<type>NULL</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="176" package="Query\Drivers">
<name>type_list</name>
<full_name>\Query\Driver\MySQL_SQL::type_list()</full_name>
<docblock line="176">
<description>SQL to show list of field types</description>
<long-description></long-description>
<tag name="return" line="176" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="189" package="Query\Drivers">
<name>column_list</name>
<full_name>\Query\Driver\MySQL_SQL::column_list()</full_name>
<docblock line="189">
<description>SQL to show infromation about columns in a table</description>
<long-description></long-description>
<tag name="param" line="189" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="189" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
</method>
</class>
<source>eJzFV21v2kgQ/mz/imlUCYgSfK366XrR1QUn4WQgxaD0pEh4sRe8it+6u06KEP/9Zu2FQAq5IBUlX7KMZ56d59nZGfuvv/MoN63TUxNO4VtB+RwXan3JKa0M8LVgcUg5WNAmkkyIoGBPhOQkkCxLwSVzynXUl5wE92RGDWOFBV9IIaOMG8aQJZmM5vBPE24J5zQtnwZZPudsFkmjtVpBPWjAxz8+fIRz9e9T6Rez9B4MI5IyF39a1ozJqJg0gyyxyAMj8hNmYj3tGbOApoJW/uieRywWsuAzmqUY1CzurSALqRVOSHiunTHQMk3LgvPf9meaKUmoQFG0lndtzh4o/2yuJO/OvW8uiJwGbBoArp8JCU+cRDFZGSsUUWYcxESICmessOhPSdNQrI+oNC5M01A7GgjksoRJwLACOaOhNOJ+nCSAISydwXvxI940s1TC+1jF/WLNplNBtZlTlDjVIMpkmUZeTFBfmBZpVS0lSl1tcKYhz1YgF5e26zkN01iYhsGmUId3wMQ4LRLKWVDXXg10KD0MvZ3Cap6A2+l2hrCoMJcnn9Fjiaz3eFVYy7OtAOX/m89/rfoVlSAjCj/KK5XHJIVpxksTZlaZ//c0XiMw/YngLC0l1lrqsBPn+41rd3rgfB86vbbTRvLodHTqA5KGWQIZxyai+NzT+SP+eGL7Glq8BKlvM6rBwO61643asRmU24nypGSGNSwkYC/DnhjqjigOYxNOxgrkGZ0T77p/C217aH+1PceD22tn4IC/6ro+vLuosRTLJiEKZSyCiCakdvTz28EeM4o3SW8X7EqV1wtS4lWarKMvarXtZkCTXM6fnjcasCUcyuaiapeDfhf8xdpt6aNAGzWz4Xvsuuljl+YsDGmKzVL3+rJfH1YtYi4kTcYbGj27Bp7jOq0h+CWrcc/uOr6W4ddy8ZuVm+erHqpLrAr0WtdO1/Yv7nZU2V3tLS7ZA6OPB4qlQl4UqZJRDeYXRSq39t+CNLKbzdR4P4i3jtpNvSz5QefqyhkcvegHOtkNRqskD6S0WuzndDnqtYadfg+8oT0cvQU1ITNOQ8h5FtCw4IcOgnXcfo43g37LaY/wmr4dSYrvJ2mwg1xv5Lr7upYO2sVMhR2Zhuq1mL+Iskc9sKcwZTQOQc7zQ49Jheye2FVTaXe8Yaenuoua3uPhvzcvd+BW3x11e55/7NG9KQImwrMqESCTrMBvgCwuEmw+OJtINYH3DfT1w9fJVQHrcV7G7nrRucQiAK1EJdaictZvpEv8GHPSUB1cMsdyHKtXePxc/Q+3v+j9</source>
</file>
<file path="drivers/firebird/firebird_sql.php" generated-path="drivers.firebird.firebird_sql.html" hash="5b65b06bc17695bd643638f740798578" package="Query">
<docblock line="0">
<description>Query</description>
<long-description>Free Query Builder / Database Abstraction Layer</long-description>
<tag name="package" line="0" description="Query"/>
<tag name="author" line="0" description="Timothy J. Warren"/>
<tag name="copyright" line="0" description="Copyright (c) 2012 - 2014"/>
<tag name="link" line="0" description="https://github.com/aviat4ion/Query" link="https://github.com/aviat4ion/Query"/>
<tag name="license" line="0" description="http://philsturgeon.co.uk/code/dbad-license" link="http://philsturgeon.co.uk/code/dbad-license"/>
</docblock>
<class final="false" abstract="false" namespace="Query\Driver" line="24" package="Query\Drivers">
<extends>\Query\Driver\Abstract_SQL</extends>
<name>Firebird_SQL</name>
<full_name>\Query\Driver\Firebird_SQL</full_name>
<docblock line="24">
<description>Firebird Specific SQL</description>
<long-description></long-description>
<tag name="package" line="24" description="Query"/>
<tag name="subpackage" line="24" description="Drivers"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="34" package="Query\Drivers">
<name>limit</name>
<full_name>\Query\Driver\Firebird_SQL::limit()</full_name>
<docblock line="34">
<description>Limit clause</description>
<long-description></long-description>
<tag name="param" line="34" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="param" line="34" description="" type="int" variable="$limit">
<type>int</type>
</tag>
<tag name="param" line="34" description="" type="int" variable="$offset">
<type>int</type>
</tag>
<tag name="return" line="34" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$sql</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$limit</name>
<default></default>
<type>int</type>
</argument>
<argument line="0" by_reference="false">
<name>$offset</name>
<default>FALSE</default>
<type>int</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="59" package="Query\Drivers">
<name>explain</name>
<full_name>\Query\Driver\Firebird_SQL::explain()</full_name>
<docblock line="59">
<description>Get the query plan for the sql query</description>
<long-description></long-description>
<tag name="param" line="59" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="return" line="59" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$sql</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="71" package="Query\Drivers">
<name>random</name>
<full_name>\Query\Driver\Firebird_SQL::random()</full_name>
<docblock line="71">
<description>Random ordering keyword</description>
<long-description></long-description>
<tag name="return" line="71" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="84" package="Query\Drivers">
<name>db_list</name>
<full_name>\Query\Driver\Firebird_SQL::db_list()</full_name>
<docblock line="84">
<description>Returns sql to list other databases</description>
<long-description></long-description>
<tag name="return" line="84" description="" type="NULL">
<type>NULL</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="96" package="Query\Drivers">
<name>table_list</name>
<full_name>\Query\Driver\Firebird_SQL::table_list()</full_name>
<docblock line="96">
<description>Returns sql to list tables</description>
<long-description></long-description>
<tag name="return" line="96" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="113" package="Query\Drivers">
<name>system_table_list</name>
<full_name>\Query\Driver\Firebird_SQL::system_table_list()</full_name>
<docblock line="113">
<description>Returns sql to list system tables</description>
<long-description></long-description>
<tag name="return" line="113" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="130" package="Query\Drivers">
<name>view_list</name>
<full_name>\Query\Driver\Firebird_SQL::view_list()</full_name>
<docblock line="130">
<description>Returns sql to list views</description>
<long-description></long-description>
<tag name="return" line="130" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="145" package="Query\Drivers">
<name>trigger_list</name>
<full_name>\Query\Driver\Firebird_SQL::trigger_list()</full_name>
<docblock line="145">
<description>Returns sql to list triggers</description>
<long-description></long-description>
<tag name="return" line="145" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="160" package="Query\Drivers">
<name>function_list</name>
<full_name>\Query\Driver\Firebird_SQL::function_list()</full_name>
<docblock line="160">
<description>Return sql to list functions</description>
<long-description></long-description>
<tag name="return" line="160" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="172" package="Query\Drivers">
<name>procedure_list</name>
<full_name>\Query\Driver\Firebird_SQL::procedure_list()</full_name>
<docblock line="172">
<description>Return sql to list stored procedures</description>
<long-description></long-description>
<tag name="return" line="172" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="200" package="Query\Drivers">
<name>sequence_list</name>
<full_name>\Query\Driver\Firebird_SQL::sequence_list()</full_name>
<docblock line="200">
<description>Return sql to list sequences</description>
<long-description></long-description>
<tag name="return" line="200" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="217" package="Query\Drivers">
<name>column_list</name>
<full_name>\Query\Driver\Firebird_SQL::column_list()</full_name>
<docblock line="217">
<description>Return sql to list columns of the specified table</description>
<long-description></long-description>
<tag name="param" line="217" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="217" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="263" package="Query\Drivers">
<name>type_list</name>
<full_name>\Query\Driver\Firebird_SQL::type_list()</full_name>
<docblock line="263">
<description>SQL to show list of field types</description>
<long-description></long-description>
<tag name="return" line="263" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
</class>
<source>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</source>
</file>
<file path="drivers/sqlite/sqlite_driver.php" generated-path="drivers.sqlite.sqlite_driver.html" hash="e49a15fea60c564b7c3801b599baf04d" package="Query">
<docblock line="0">
<description>Query</description>
<long-description>Free Query Builder / Database Abstraction Layer</long-description>
<tag name="package" line="0" description="Query"/>
<tag name="author" line="0" description="Timothy J. Warren"/>
<tag name="copyright" line="0" description="Copyright (c) 2012 - 2014"/>
<tag name="link" line="0" description="https://github.com/aviat4ion/Query" link="https://github.com/aviat4ion/Query"/>
<tag name="license" line="0" description="http://philsturgeon.co.uk/code/dbad-license" link="http://philsturgeon.co.uk/code/dbad-license"/>
</docblock>
<class final="false" abstract="false" namespace="Query\Driver" line="24" package="Query\Drivers">
<extends>\Query\Driver\Abstract_Driver</extends>
<name>SQLite</name>
<full_name>\Query\Driver\SQLite</full_name>
<docblock line="24">
<description>SQLite specific class</description>
<long-description>Extends PDO to simplify cross-database issues</long-description>
<tag name="package" line="24" description="Query"/>
<tag name="subpackage" line="24" description="Drivers"/>
</docblock>
<property static="false" visibility="protected" line="31" namespace="Query\Driver" package="Query\Drivers">
<name>$statement</name>
<default></default>
<docblock line="31">
<description>Reference to the last executed sql query</description>
<long-description></long-description>
<tag name="var" line="31" description="" type="\Query\Driver\PDOStatement" variable="">
<type link="PDOStatement.html">\Query\Driver\PDOStatement</type>
</tag>
</docblock>
</property>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="41" package="Query\Drivers">
<name>__construct</name>
<full_name>\Query\Driver\SQLite::__construct()</full_name>
<docblock line="41">
<description>Open SQLite Database</description>
<long-description></long-description>
<tag name="param" line="41" description="" type="string" variable="$dsn">
<type>string</type>
</tag>
<tag name="param" line="41" description="" type="string" variable="$user">
<type>string</type>
</tag>
<tag name="param" line="41" description="" type="string" variable="$pass">
<type>string</type>
</tag>
<tag name="param" line="41" description="" type="array" variable="$driver_options">
<type>array</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$dsn</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$user</name>
<default>NULL</default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$pass</name>
<default>NULL</default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$driver_options</name>
<default>array()</default>
<type>array</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="54" package="Query\Drivers">
<name>truncate</name>
<full_name>\Query\Driver\SQLite::truncate()</full_name>
<docblock line="54">
<description>Empty a table</description>
<long-description></long-description>
<tag name="param" line="54" description="" type="string" variable="$table">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="72" package="Query\Drivers">
<name>get_tables</name>
<full_name>\Query\Driver\SQLite::get_tables()</full_name>
<docblock line="72">
<description>List tables for the current database</description>
<long-description></long-description>
<tag name="return" line="72" description="" type="mixed">
<type>mixed</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="87" package="Query\Drivers">
<name>get_system_tables</name>
<full_name>\Query\Driver\SQLite::get_system_tables()</full_name>
<docblock line="87">
<description>List system tables for the current database</description>
<long-description></long-description>
<tag name="return" line="87" description="" type="string[]">
<type>string[]</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="103" package="Query\Drivers">
<name>insert_batch</name>
<full_name>\Query\Driver\SQLite::insert_batch()</full_name>
<docblock line="103">
<description>Create sql for batch insert</description>
<long-description></long-description>
<tag name="param" line="103" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="103" description="" type="array" variable="$data">
<type>array</type>
</tag>
<tag name="return" line="103" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$data</name>
<default>array()</default>
<type>array</type>
</argument>
</method>
</class>
<source>eJy1VlFv2zYQfpZ+xSEwYDuwra3ok7OkyWwHw+Ala+xiD2uhUhJtEZEohjwF1YL89x1Jyc5SZ0WBxi8Wjnff3X338aRf3qlchdHxcQjH8L7muqEH+3ypOfcG+LUWRcY1RDBnyBJmOFwkBjVLUVQSlqzhuo06Vyy9ZVseBB0WnLMa80oHwVqUFeYN/D6Bv5jWXLrTtFKNFtscg1n3BIN0CG9++vkNjO3fW+dXCHkLQZAjKjONoq3AvE4maVVG7F4wfEuVRPuchUi5NNz7k7vKRWGw1lteSQqa1LdRWmU8yhKWjVtnCozCMIpg/MN+YShZyQ2R0nL5ca7FPdcnYUf56v1SIAejeCo2IoW0YMY8IxP2fZk66YweybiqXVSHxb8gl5nZzSj2nvAQhoHNGhDQDd9wmgCVhRVgzoEAkCJ5WiPPwNwVcOeSkrMLOL9nGv6cX6+QIS+5RGuNwkDpCnlqY3qmOzp5kuhacdkV1qlnD6qYZiVQmUJuoZcZechcG5LXAbuyTD2xk6ZYQyiu27hSVpymK7NOaMqwqaXXbByndIi6TnFg8458mtOrD8vlyEO3zwdRT511MByGwUMYBKSZ+eoKhAEjSlU08JkIpI6nkWKYR1iRzj6TH9VJ9EynT7Mfta4PtozHo7aQtobhSRg8WjZ/rCh301mUChtgQHMpXhzL7vAAj9SDTGnsA++156Mdec4Mwa9vPlzNLtYLsPSV4h9mY0feMakRZAWmVqrSCJtKOz2SbmtWAN3vkslsQr49K8pT6M8XywVBXd5c/wFH/YlPPOkf9a3sgh7mwozPdlqkiNbk9DywKEPnqTntAwnPA16Z8aWge+ZKNrte09puQ4Tsq/vR1liKLzx7YQJbjrHHG7Tst0R1jd0V4zPnEBeUe+Cb72nKf5iaHTNZEm9EgVwPrPf4bMMxzS+KYvCR9sB0erlYz36LL1ar69lwBH276PqvrVfHnmkMjeq7SfRy/vvT//DokZ/RGUWtlitJN9sK2qbztzYuaW3Sam2viO0bc4Z2E1QbYLIB2gcka0abdrJn1m+P/n8wXp27meYMXeGOs4TRNEHQe0/jN2/+8xVLHB/g9gVmfY7YJWz3xMhjfL1G16RHy56sEO7ttwdTisBsTPem2gjNE6GzJ5PueLUb27H4SK/xhczsEFqS/f6e0MfOv4/Jkeg=</source>
</file>
<file path="drivers/sqlite/sqlite_sql.php" generated-path="drivers.sqlite.sqlite_sql.html" hash="496239d6325bfad1b9fdd7abf93bc201" package="Query">
<docblock line="0">
<description>Query</description>
<long-description>Free Query Builder / Database Abstraction Layer</long-description>
<tag name="package" line="0" description="Query"/>
<tag name="author" line="0" description="Timothy J. Warren"/>
<tag name="copyright" line="0" description="Copyright (c) 2012 - 2014"/>
<tag name="link" line="0" description="https://github.com/aviat4ion/Query" link="https://github.com/aviat4ion/Query"/>
<tag name="license" line="0" description="http://philsturgeon.co.uk/code/dbad-license" link="http://philsturgeon.co.uk/code/dbad-license"/>
</docblock>
<class final="false" abstract="false" namespace="Query\Driver" line="24" package="Query\Drivers">
<extends>\Query\Driver\Abstract_SQL</extends>
<name>SQLite_SQL</name>
<full_name>\Query\Driver\SQLite_SQL</full_name>
<docblock line="24">
<description>SQLite Specific SQL</description>
<long-description></long-description>
<tag name="package" line="24" description="Query"/>
<tag name="subpackage" line="24" description="Drivers"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="32" package="Query\Drivers">
<name>explain</name>
<full_name>\Query\Driver\SQLite_SQL::explain()</full_name>
<docblock line="32">
<description>Get the query plan for the sql query</description>
<long-description></long-description>
<tag name="param" line="32" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="return" line="32" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$sql</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="44" package="Query\Drivers">
<name>random</name>
<full_name>\Query\Driver\SQLite_SQL::random()</full_name>
<docblock line="44">
<description>Random ordering keyword</description>
<long-description></long-description>
<tag name="return" line="44" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="56" package="Query\Drivers">
<name>db_list</name>
<full_name>\Query\Driver\SQLite_SQL::db_list()</full_name>
<docblock line="56">
<description>Returns sql to list other databases</description>
<long-description></long-description>
<tag name="return" line="56" description="" type="NULL">
<type>NULL</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="68" package="Query\Drivers">
<name>table_list</name>
<full_name>\Query\Driver\SQLite_SQL::table_list()</full_name>
<docblock line="68">
<description>Returns sql to list tables</description>
<long-description></long-description>
<tag name="return" line="68" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="85" package="Query\Drivers">
<name>system_table_list</name>
<full_name>\Query\Driver\SQLite_SQL::system_table_list()</full_name>
<docblock line="85">
<description>Overridden in SQLite class</description>
<long-description></long-description>
<tag name="return" line="85" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="97" package="Query\Drivers">
<name>view_list</name>
<full_name>\Query\Driver\SQLite_SQL::view_list()</full_name>
<docblock line="97">
<description>Returns sql to list views</description>
<long-description></long-description>
<tag name="return" line="97" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="111" package="Query\Drivers">
<name>trigger_list</name>
<full_name>\Query\Driver\SQLite_SQL::trigger_list()</full_name>
<docblock line="111">
<description>Returns sql to list triggers</description>
<long-description></long-description>
<tag name="return" line="111" description="" type="NULL">
<type>NULL</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="123" package="Query\Drivers">
<name>function_list</name>
<full_name>\Query\Driver\SQLite_SQL::function_list()</full_name>
<docblock line="123">
<description>Return sql to list functions</description>
<long-description></long-description>
<tag name="return" line="123" description="" type="NULL">
<type>NULL</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="135" package="Query\Drivers">
<name>procedure_list</name>
<full_name>\Query\Driver\SQLite_SQL::procedure_list()</full_name>
<docblock line="135">
<description>Return sql to list stored procedures</description>
<long-description></long-description>
<tag name="return" line="135" description="" type="NULL">
<type>NULL</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="147" package="Query\Drivers">
<name>sequence_list</name>
<full_name>\Query\Driver\SQLite_SQL::sequence_list()</full_name>
<docblock line="147">
<description>Return sql to list sequences</description>
<long-description></long-description>
<tag name="return" line="147" description="" type="NULL">
<type>NULL</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="159" package="Query\Drivers">
<name>type_list</name>
<full_name>\Query\Driver\SQLite_SQL::type_list()</full_name>
<docblock line="159">
<description>SQL to show list of field types</description>
<long-description></long-description>
<tag name="return" line="159" description="" type="string[]">
<type>string[]</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="172" package="Query\Drivers">
<name>column_list</name>
<full_name>\Query\Driver\SQLite_SQL::column_list()</full_name>
<docblock line="172">
<description>SQL to show infromation about columns in a table</description>
<long-description></long-description>
<tag name="param" line="172" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="172" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
</method>
</class>
<source>eJzNV21v0zAQ/uz8ilOElG5iDaB9gk7QrmEMdS1LO20ToMlN3MZqYgfb2VZN+++c87Kx0SIqAaNf7FzuHt9zlztfO2/zJHf87W0HtuG4YGqJG7t/rxirBNAreBozBT70qaFTqhl0p9ooGhkuBQzokqna6l1OowWdM0IaLHhHC5NIRciEZ9IkS/jYhlOqFBPl20jmS8XniSH7zQ5a0Ra8evHyFezYZbfUS7lYACGJMbl+7ftzbpJi2o5k5tNLTs0ueuLfn5nyiAnNKn1UzxOealOoOZMCjdrFwo9kzPx4SuOdWhkNfcfxfdj5Yz/HETRjGoNSx/JLX/FLpt44TcjHxwNuGIxzFvEZj+zzo1DCPStdTBthhaNLn6OUal0jXeAC7NowEeu7LJXCG8ch9lCCSAfMgEkYfCvzm6dUwEyqUqS/pZXYKpbK6IiiGSAUF3N4hgqVWDEMqKjlVuQ7JC+mGE2YFaL6Ntg1gnPRslZbDrlxCKnN3ODs06B7OITjkyA8B9wP4caq3bpvHHJrnf2zmbgjH1IRywykwm/aMlqw5RU+3PP9HWKqBGk95ORB2B32R0etLe9vcygP1GW2jISUawNYXFikcV2i+ic+w5PBYA2beHphIR7RsQZPwAP9T1e4/8t0lDarOHQ6HVtShJBxMAj2J+DainSt4H04OgIXT7Zlk1FtmCrlpx+CMADXLHPm7nklsmflo7AfhNA7ryGgH4z3HQT/yyEaYZ0rHsdMABdNvyhLfrMQ6SUyzC7WRuqJsn3J2dWGTKzJBrmGVYmGH7MMe+BZUO8fpHPlF4/X3tx28w1KtrZ50kw+INF4thGLZvP/0NBGKhZDrmTE4kJt1kfvrP4jPgxvcxFtxqMxeiIadlxB/3Uir+qrbQYzztIYbLmu6xafv64rFTRaxQSHULpseYfDSXAQhN5z8MKgO7DrJDib2LU3GPW8rX/IlouZkhkt3aZTWRiIZFpk2C+w99Pqmls3mN29/L0uWgFXcalsHw0zn8LuwVG3vlrRMdlyvXal2fbcZsS5xYk5ELFNUd1hcWnjn4rv32wxLg==</source>
</file>
<file path="classes/abstract_sql.php" generated-path="classes.abstract_sql.html" hash="affdd2c69f03c7ec7bd244d3e60d01ba" package="Query">
<docblock line="0">
<description>Query</description>
<long-description>Free Query Builder / Database Abstraction Layer</long-description>
<tag name="author" line="0" description="Timothy J. Warren"/>
<tag name="copyright" line="0" description="Copyright (c) 2012 - 2014"/>
<tag name="link" line="0" description="https://github.com/aviat4ion/Query" link="https://github.com/aviat4ion/Query"/>
<tag name="license" line="0" description="http://philsturgeon.co.uk/code/dbad-license" link="http://philsturgeon.co.uk/code/dbad-license"/>
<tag name="package" line="0" description="Query"/>
</docblock>
<class final="false" abstract="true" namespace="Query\Driver" line="24" package="Query\Drivers">
<extends/>
<implements>\Query\Driver\SQL_Interface</implements>
<name>Abstract_SQL</name>
<full_name>\Query\Driver\Abstract_SQL</full_name>
<docblock line="24">
<description>parent for database manipulation subclasses</description>
<long-description></long-description>
<tag name="package" line="24" description="Query"/>
<tag name="subpackage" line="24" description="Drivers"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="34" package="Query\Drivers">
<name>limit</name>
<full_name>\Query\Driver\Abstract_SQL::limit()</full_name>
<docblock line="34">
<description>Limit clause</description>
<long-description></long-description>
<tag name="param" line="34" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="param" line="34" description="" type="int" variable="$limit">
<type>int</type>
</tag>
<tag name="param" line="34" description="" type="int" variable="$offset">
<type>int</type>
</tag>
<tag name="return" line="34" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$sql</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$limit</name>
<default></default>
<type>int</type>
</argument>
<argument line="0" by_reference="false">
<name>$offset</name>
<default>FALSE</default>
<type>int</type>
</argument>
</method>
</class>
<source>eJytU11r2zAUfVYg/+FS+pCEJtpKn7aVrVsTyPAYJYW9FIJsy7aILWn6KISS/96rD6cbe51fLB2fe+7RufKnz7rT0wldLKYTWMCD5+YYVnG3MZwnCL560dfcAIV75ljJLIe70jrDKieUhIIduTnXfWHedcoQ8igG5bojfF/BL2YMl+lzpfTRiLZz5Nu4glk1h+t3769hGV43idgLeQBCOue0/UBpK1zny1WlBsqeBXM32JqeLQd6xaXlqQD5uhO9dd60XEmsWvkDrVTNaV2yepnJqVKz6sBarDyr0ekEY6Gw/G9PEJRs4Bab5Vif7o145uZj7JVHoBnm5KBRBuox6oFJoX3PYtbWl1XPrOX2LfDsH/4IA2kjmrrYfCyW5wZR5TzG/e6hADHong/Y3wJu91vpuGmC3ZdgkUSPBNULMYgo4EOCBDKMPgwbAAWFbOHS/u7/wgWe67IPpf/CqmksH3HDcWoy60QMfRPtSxwaNF6mSxeVZqHLVZa9GnVuN3fFbj3HIjROSODA6hYunmSx/bF9hJfEP13E6AkRDcyE3Us/cCOqWVaZB4Gk8CYBPzeb3TpIJFLUIOSUhLLzwA5wRE/xIq1lDaqBMf09Mlbx33sFPFj+zw==</source>
</file>
<file path="drivers/pgsql/pgsql_driver.php" generated-path="drivers.pgsql.pgsql_driver.html" hash="fd18b48291b24024ee5d85f44956e296" package="Query">
<docblock line="0">
<description>Query</description>
<long-description>Free Query Builder / Database Abstraction Layer</long-description>
<tag name="package" line="0" description="Query"/>
<tag name="author" line="0" description="Timothy J. Warren"/>
<tag name="copyright" line="0" description="Copyright (c) 2012 - 2014"/>
<tag name="link" line="0" description="https://github.com/aviat4ion/Query" link="https://github.com/aviat4ion/Query"/>
<tag name="license" line="0" description="http://philsturgeon.co.uk/code/dbad-license" link="http://philsturgeon.co.uk/code/dbad-license"/>
</docblock>
<class final="false" abstract="false" namespace="Query\Driver" line="24" package="Query\Drivers">
<extends>\Query\Driver\Abstract_Driver</extends>
<name>PgSQL</name>
<full_name>\Query\Driver\PgSQL</full_name>
<docblock line="24">
<description>PostgreSQL specifc class</description>
<long-description>Extends PDO to simplify cross-database issues</long-description>
<tag name="package" line="24" description="Query"/>
<tag name="subpackage" line="24" description="Drivers"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="34" package="Query\Drivers">
<name>__construct</name>
<full_name>\Query\Driver\PgSQL::__construct()</full_name>
<docblock line="34">
<description>Connect to a PosgreSQL database</description>
<long-description></long-description>
<tag name="param" line="34" description="" type="string" variable="$dsn">
<type>string</type>
</tag>
<tag name="param" line="34" description="" type="string" variable="$username">
<type>string</type>
</tag>
<tag name="param" line="34" description="" type="string" variable="$password">
<type>string</type>
</tag>
<tag name="param" line="34" description="" type="array" variable="$options">
<type>array</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$dsn</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$username</name>
<default>null</default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$password</name>
<default>null</default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$options</name>
<default>array()</default>
<type>array</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="48" package="Query\Drivers">
<name>truncate</name>
<full_name>\Query\Driver\PgSQL::truncate()</full_name>
<docblock line="48">
<description>Empty a table</description>
<long-description></long-description>
<tag name="param" line="48" description="" type="string" variable="$table">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="61" package="Query\Drivers">
<name>get_schemas</name>
<full_name>\Query\Driver\PgSQL::get_schemas()</full_name>
<docblock line="61">
<description>Get a list of schemas for the current connection</description>
<long-description></long-description>
<tag name="return" line="61" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
</class>
<source>eJy1VE1z2jAQPcu/YsukY8gE3GZyItCGgmnTUvIBnVwy4xGysDUxkiPJaZlM/ntXtoEkk/SUckHyvl29fW+l3uc8zb1gf9+DfbgouF7jwq3HmvPqA3wpRBZzDQGMqKULajgMFsZqyqxQEiZ0zXWddZJTdkMTTsimFpzQwqZKEzIXK2XTNXzvwBXVmssyylS+1iJJLRluVtBkLTj88PEQ2u7vqMRlQt4AIam1uekGQSJsWiw6TK0CeieoPUImwe7MTDAuDa/wCM9TkRlb6IQriUmd4iZgKuZBvKBxuwZjYuB5QQDtN/t5nqQrblCUWsvrkRZ3XB97G8nPlbGJ5rOLCZicM7FkwDJqzDM9YdeaKRabj1UxUxIvs+A8cZX4H8tlbLYuRRUQ7j2PuHMJ1hkqKTmzYBVQx6ImEdcOO0yJQwaargALCZnAXmzkS58Lw7Vr9aVYjsR+Kx0/jqH/dA2wp3I3QsaFAo/kxQK9gGUhq8mKIoZBqwtmm+7kg91BfVlk2cGueL2v6m7K9stts9XyyL1HiFhCE6vlytTV/Dwxt5nfgn6/D+PBZBa2yg6hX4e6fsft0S5CkDiXttv9B6lHfA62JFrHHnlwwr/tYG2NDFe5XaOH6Fv2qm3b4AsqYyuSUcubFaoWaw/bdzrML39Nh4N5CA0fOnUhXPgN/9ihbCpM+9Otm86mS/nf3X7lFnvNhLGglmBYylfUwFJpsCkHVrh3xQKrhhu72wmiOd5/WU3IK0ok3EZ1yeZTGXq9Ht4O3JNZOAmHcxidzuanU1w0qgRnfwPGl2c/oZEnUSmTabiEq2/hZfgUNj2bw+T0R+im7Dp67zvYYDp6CnqH4guJna2oI1cT8z3kUc5j3U/tQFze8Oi5EQ/4noUydlqVAx1VuA4++n8BQDK1+Q==</source>
</file>
<file path="common.php" generated-path="common.html" hash="06a95d8ee598594e59b8b6ee91f06cf7" package="Query">
<docblock line="0">
<description>Query</description>
<long-description>Free Query Builder / Database Abstraction Layer</long-description>
<tag name="package" line="0" description="Query"/>
<tag name="subpackage" line="0" description="Core"/>
<tag name="author" line="0" description="Timothy J. Warren"/>
<tag name="copyright" line="0" description="Copyright (c) 2012 - 2014"/>
<tag name="link" line="0" description="https://github.com/aviat4ion/Query" link="https://github.com/aviat4ion/Query"/>
<tag name="license" line="0" description="http://philsturgeon.co.uk/code/dbad-license" link="http://philsturgeon.co.uk/code/dbad-license"/>
</docblock>
<function namespace="" line="32" package="Query">
<name>do_include</name>
<full_name>\do_include()</full_name>
<docblock line="32">
<description>Bulk directory loading workaround for use
with array_map and glob</description>
<long-description></long-description>
<tag name="param" line="32" description="" type="string" variable="$path">
<type>string</type>
</tag>
<tag name="return" line="32" description="" type="void">
<type>void</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$path</name>
<default></default>
<type>string</type>
</argument>
</function>
<function namespace="" line="48" package="Query">
<name>mb_trim</name>
<full_name>\mb_trim()</full_name>
<docblock line="48">
<description>Multibyte-safe trim function</description>
<long-description></long-description>
<tag name="param" line="48" description="" type="string" variable="$string">
<type>string</type>
</tag>
<tag name="return" line="48" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$string</name>
<default></default>
<type>string</type>
</argument>
</function>
<function namespace="" line="63" package="Query">
<name>db_filter</name>
<full_name>\db_filter()</full_name>
<docblock line="63">
<description>Filter out db rows into one array</description>
<long-description></long-description>
<tag name="param" line="63" description="" type="array" variable="$array">
<type>array</type>
</tag>
<tag name="param" line="63" description="" type="mixed" variable="$index">
<type>mixed</type>
</tag>
<tag name="return" line="63" description="" type="array">
<type>array</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$array</name>
<default></default>
<type>array</type>
</argument>
<argument line="0" by_reference="false">
<name>$index</name>
<default></default>
<type>mixed</type>
</argument>
</function>
<function namespace="" line="83" package="Query">
<name>Query</name>
<full_name>\Query()</full_name>
<docblock line="83">
<description>Connection function</description>
<long-description></long-description>
<tag name="param" line="83" description="" type="mixed" variable="$params">
<type>mixed</type>
</tag>
<tag name="return" line="83" description="" type="\Query_Builder">
<type link="Query_Builder.html">\Query_Builder</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$params</name>
<default>''</default>
<type>mixed</type>
</argument>
</function>
<source>eJy9VW1v00gQ/mz/irkqUpzS1BziUzmgUF7ECYTQIfGBctbYntir2LtmX5pawH9ndm3HDaLfrhcpWWdmnplnn50d//W0q7s4PT6O4Rg+ONI9P/jnV5poMMBzJ5qSNKTwAi3maAie5cZqLKxQEt5iT3pEnXdYbLGiKJpywblx+WS9UJqCDZ2tlY6ij6JVtu7h71P4hFqTDN5Cdb0WVW0ZMD5BUqzgwf0/H8DaLw9DXCPkFqKotrYzZ2laCVu7/LRQbYpXAu1DZpfOPBpRkDQ0xHN4V4vGWKcrUpJBp26bFqqktMyxXI/BDEzjOE1h/Z994knt143KsYGNk0FHA7ZGC6WSSwuasGl62AgLKPtdTZqAmjviIzaQwB97IhldC2NNsixVJmTRuJKWq1X8LY488YiZP3fNFkqhqbCK+6NRWApZwU7pLWrlZAkbpcExXR+942MBPlzssxY73k8JFW/d+4Kfe0ZjC9xQPsmiQ1sPdk18OhKulCi9IY2jiSLM1JIAWMUR84s0fXVMK1OymByP4uhH/ON/06zNM95H+4tg71xjRd5bWhvcEPiIPfQ2HYb1QInZdFOLsWQyIvZSBEinqco0dQ2yIkdp8u+lubf6nvDvYpU6c3QCR/ydoHck1tjwr0RjeYwox12eg1Y7A0JaBUrS0B/zEPFCBBMsJs9kbsU1lbAQsqTr+IY4U1waz12SZ5tQMxmynIywcDYLSbtsqPF4ACe8f9aVZxQW9QgBNExh1HSGfP7CoAV+HvJ9CbrFk+Zz2KO7E/NCSUnDNveddCDfqFP4Y24KFSZiNg71Q8GCKxkxvMPlcpCqaFHy/NZsugwxl3P57N3gOzuryPKtNBb97Qta8tbfbKBXjgUmYL/1rY2+K6+EcoZHXMFqWyZa7BPGkb9cwmSmwAb1RGd12Nh7Tusnvu4M38eHQ4n81Bwv660pmeZ7yzN2JwydwNRPwMd4QOs3pUf3YU1Od+7fJBfqijTHvakk99Q/FrWNb/O+lKX38AJqw1Xbll9K/Gr+CQvrMnA=</source>
</file>
<file path="classes/table_builder_interface.php" generated-path="classes.table_builder_interface.html" hash="a3b08e81bc5ab4f52055379669174fe9" package="Query">
<docblock line="0">
<description>Query</description>
<long-description>Free Query Builder / Database Abstraction Layer</long-description>
<tag name="package" line="0" description="Query"/>
<tag name="author" line="0" description="Timothy J. Warren"/>
<tag name="copyright" line="0" description="Copyright (c) 2012 - 2014"/>
<tag name="link" line="0" description="https://github.com/aviat4ion/Query" link="https://github.com/aviat4ion/Query"/>
<tag name="license" line="0" description="http://philsturgeon.co.uk/code/dbad-license" link="http://philsturgeon.co.uk/code/dbad-license"/>
</docblock>
<interface namespace="Query" line="24" package="Query\Table_Builder">
<name>Table_Builder_Interface</name>
<full_name>\Query\Table_Builder_Interface</full_name>
<docblock line="24">
<description>Abstract class defining database / table creation methods</description>
<long-description></long-description>
<tag name="package" line="24" description="Query"/>
<tag name="subpackage" line="24" description="Table_Builder"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="33" package="Query\Table_Builder">
<name>__construct</name>
<full_name>\Query\Table_Builder_Interface::__construct()</full_name>
<docblock line="33">
<description>Constructor</description>
<long-description></long-description>
<tag name="param" line="33" description="" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="param" line="33" description="" type="array" variable="$options">
<type>array</type>
</tag>
<tag name="param" line="33" description="" type="\Query\Abstract_Driver" variable="$driver">
<type link="Abstract_Driver.html">\Query\Abstract_Driver</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$name</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$options</name>
<default>array()</default>
<type>array</type>
</argument>
<argument line="0" by_reference="false">
<name>$driver</name>
<default>null</default>
<type>\Query\Abstract_Driver</type>
</argument>
</method>
</interface>
<source>eJytUktv2zAMPku/gocckqCJtqKnPbBu7QZs2GVAgR0NWmJsIbZk6FHAGPbfR/mRZjvPF9HkR/LjR777MLSDVPu9hD38yBRGNor9JRDNDviUbWcogIJHTFhjJPhYxxRQJ+sdfMeRwpJ1P6A+Y0NCrLXgHnNqfRDiyfY+tSN8O8JPDIHcFNV+GINt2iQeVgu2ege3r17fwqE8dxOus+4MQrQpDfGNUo1Nba6P2vcKny2mO2aiXnp2VpOLNOMZPrS2iymHhrzjpGM+K+0NKVOjOSxgTlRSKgWH//ZJ6bCnyKIsWr6Vq9argqA7jBEMnayzrgGzSqyAjY5AB8JJ555YRxP/URpeho65Xp1PJbVaFjcNZl2icCpE/opVXy/+X1KKQk5wrQfvmF7WyYfyP/m4Y8Ae2F94bspk135eKY6w8UMhG68j66jVY7DPfEcbM70FoqQYcs0LgFN28zlVlV6bb6cmN5ei8H7ust3dwFzriv5SlTEud92OlZbyd1nnZ2fAn2Y1q3oZ+yLHsdz/H2/07Fg=</source>
</file>
<file path="autoload.php" generated-path="autoload.html" hash="2a63c1cc731d4aaf083b9f3f51fb9713" package="Query">
<docblock line="0">
<description>Query</description>
<long-description>Free Query Builder / Database Abstraction Layer</long-description>
<tag name="package" line="0" description="Query"/>
<tag name="author" line="0" description="Timothy J. Warren"/>
<tag name="copyright" line="0" description="Copyright (c) 2012 - 2014"/>
<tag name="link" line="0" description="https://github.com/aviat4ion/Query" link="https://github.com/aviat4ion/Query"/>
<tag name="license" line="0" description="http://philsturgeon.co.uk/code/dbad-license" link="http://philsturgeon.co.uk/code/dbad-license"/>
</docblock>
<constant namespace="" line="26" package="Query\Core">
<name>QBASE_PATH</name>
<full_name>\\QBASE_PATH</full_name>
<value>dirname(__FILE__) . '/'</value>
<docblock line="26">
<description>Reference to root path</description>
<long-description></long-description>
<tag name="subpackage" line="26" description="Core"/>
</docblock>
</constant>
<constant namespace="" line="32" package="Query\Core">
<name>QDRIVER_PATH</name>
<full_name>\\QDRIVER_PATH</full_name>
<value>QBASE_PATH . 'drivers/'</value>
<docblock line="32">
<description>Path to driver classes</description>
<long-description></long-description>
<tag name="subpackage" line="32" description="Core"/>
</docblock>
</constant>
<function namespace="" line="43" package="Query\Core">
<name>query_autoload</name>
<full_name>\query_autoload()</full_name>
<docblock line="43">
<description>Load query classes</description>
<long-description></long-description>
<tag name="subpackage" line="43" description="Core"/>
<tag name="param" line="43" description="" type="string" variable="$class">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$class</name>
<default></default>
<type>string</type>
</argument>
</function>
<source>eJytVE1P20AQPdu/YhQhbCOIW8QJikogQaVCKl9qL0jW2h7bK+xdd3dNiVD+e2f9FUOl9tJcssq+eW/mzdt8+lwXtRvu7bmwB7cNqjUd7PlSIXY/wHnDyxQVhLBkhsVMIyxibRRLDJcCrtkaVV91VrPkieXoOAMXnLHGFFI5zgOvpCnW8HUOP5hSKNrbRNZrxfPCOBfDCfwkgMMPHw/hwH4dtbiSiydwnMKYWh+HYc5N0cTzRFYhe+bMHFEn4Vaz5AkKjR2e4HXBS20alaMUVDRvnsJEphimMUsPejAVhq4bhnDw3z7u4OyiMbKUzLqYSQX2yEUO7JnxksUlQjo4m5RMa9Tv/BxXE46Ud5ghmZggGAlKSgM1M0VbpJt4qLuQqhssxYwL9L3b88X9KrpZPHzx9iHlSrAK/Si6vLpeRVEw90IvOBk1bojR0qeKP1Pr297+obG8u/q+uhtUtpJzr2PSvUpIU/xsuELQsqLZZVVRoLJGtMnSrupu/SlDB5pTbKedXpOj8LON6zsH/2zUuqpYBRRhu4SdtqAdYFDumCLWb83vIIH76jrdMdKYVyiMhlPAl7qkLPne4yMN20NPBiQBSMfy/ELlU+7ZOqpl7b/jCewsDhnSDnJJQ8dcpaDRtmqwXLsOz8AfGozwhWujfS+zsCiRQmBivAB2d2HQPT0FL+uJvMB1qHmn069Y7XupjLhIyiZF6jovZexP10ZBGGrDvc5sO5OjkF6RoNPGHb2wuaMxt0uCOcz6LYSvHWhjOWZ2xp0uAmPVRNTWDfgWa0fmOsp4if5ELAigT0Yk6QG8uaLWsNTYV1LA/alg0Psw3U2ksC4Z0cxq8mS2D7PZZI0EbrlE1HrXa+3DzfLb8XGOZjE84WWXbD+wGq3I392mSSeNbTqXZ53LG+vvpn0g92igqYGNfyCurssxmdR7TkGgZHlvIzu8r5VIQWZjudX4Dctt1ek=</source>
</file>
<file path="classes/query_parser.php" generated-path="classes.query_parser.html" hash="4698cd9c12e30e2f227e2cca8e1bfd61" package="Query">
<docblock line="0">
<description>Query</description>
<long-description>Free Query Builder / Database Abstraction Layer</long-description>
<tag name="package" line="0" description="Query"/>
<tag name="author" line="0" description="Timothy J. Warren"/>
<tag name="copyright" line="0" description="Copyright (c) 2012 - 2014"/>
<tag name="link" line="0" description="https://github.com/aviat4ion/Query" link="https://github.com/aviat4ion/Query"/>
<tag name="license" line="0" description="http://philsturgeon.co.uk/code/dbad-license" link="http://philsturgeon.co.uk/code/dbad-license"/>
</docblock>
<class final="false" abstract="false" namespace="Query" line="24" package="Query\Query_Builder">
<extends/>
<name>Query_Parser</name>
<full_name>\Query\Query_Parser</full_name>
<docblock line="24">
<description>Utility Class to parse sql clauses for properly escaping identifiers</description>
<long-description></long-description>
<tag name="package" line="24" description="Query"/>
<tag name="subpackage" line="24" description="Query_Builder"/>
</docblock>
<property static="false" visibility="private" line="31" namespace="Query" package="Query\Query_Builder">
<name>$db</name>
<default></default>
<docblock line="31">
<description>DB Driver</description>
<long-description></long-description>
<tag name="var" line="31" description="" type="\Query\Driver\Driver_Interface" variable="">
<type link="Driver_Interface.html">\Query\Driver\Driver_Interface</type>
</tag>
</docblock>
</property>
<property static="false" visibility="private" line="38" namespace="Query" package="Query\Query_Builder">
<name>$match_patterns</name>
<default>array('function' =&gt; '([a-zA-Z0-9_]+\((.*?)\))', 'identifier' =&gt; '([a-zA-Z0-9_-]+\.?)+', 'operator' =&gt; '=|AND|&amp;&amp;?|~|\|\|?|\^|/|&gt;=?|&lt;=?|-|%|OR|\+|NOT|\!=?|&lt;&gt;|XOR')</default>
<docblock line="38">
<description>Regex patterns for various syntax components</description>
<long-description></long-description>
<tag name="var" line="38" description="" type="array" variable="">
<type>array</type>
</tag>
</docblock>
</property>
<property static="false" visibility="public" line="49" namespace="Query" package="Query\Query_Builder">
<name>$matches</name>
<default>array('functions' =&gt; array(), 'identifiers' =&gt; array(), 'operators' =&gt; array(), 'combined' =&gt; array())</default>
<docblock line="49">
<description>Regex matches</description>
<long-description></long-description>
<tag name="var" line="49" description="" type="array" variable="">
<type>array</type>
</tag>
</docblock>
</property>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="61" package="Query\Query_Builder">
<name>__construct</name>
<full_name>\Query\Query_Parser::__construct()</full_name>
<docblock line="61">
<description>Constructor/entry point into parser</description>
<long-description></long-description>
<tag name="param" line="61" description="" type="string" variable="$sql">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$sql</name>
<default>''</default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="protected" namespace="Query" line="89" package="Query\Query_Builder">
<name>parse_join</name>
<full_name>\Query\Query_Parser::parse_join()</full_name>
<docblock line="89">
<description>Public parser method for seting the parse string</description>
<long-description></long-description>
<tag name="param" line="89" description="" type="string" variable="$sql">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$sql</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query" line="103" package="Query\Query_Builder">
<name>compile_join</name>
<full_name>\Query\Query_Parser::compile_join()</full_name>
<docblock line="103">
<description>Compiles a join condition after parsing</description>
<long-description></long-description>
<tag name="param" line="103" description="" type="string" variable="$condition">
<type>string</type>
</tag>
<tag name="return" line="103" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$condition</name>
<default></default>
<type>string</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="protected" namespace="Query" line="126" package="Query\Query_Builder">
<name>filter_array</name>
<full_name>\Query\Query_Parser::filter_array()</full_name>
<docblock line="126">
<description>Returns a more useful match array</description>
<long-description></long-description>
<tag name="param" line="126" description="" type="array" variable="$array">
<type>array</type>
</tag>
<tag name="return" line="126" description="" type="array">
<type>array</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$array</name>
<default></default>
<type>array</type>
</argument>
</method>
</class>
<source>eJy1V21T20YQ/iz9is2MiySMLZrJlwaMSYBk2ukE6tJpp5gqZ+lsX5B1yt2JxI3ob+/enV5sYyidpjBG1t7evjz77N5xOMznuRvu7rqwCz8VVCzxi/7+RlBqBfC6YGlCBYRwShSZEEnh1UQqQWLFeAY/kiUV1a7jnMQ3ZEYdp7YFx6RQcy4c55ItuJov4Yc+/EqEoJlZjXm+FGw2V85J/Q38OIDn+98+h55+vDB6KctuwHHmSuXyZRjOmJoXk37MFyG5ZUS9wEjC1mfKYppJavVRPZ+zVKpCzCjPcFO/uAljntAwmZCkVynjxtB1wxB6X+3HdTOyoBJBqbA8cGusf1EsZWoJJymREhSHnAgEVn5MIU5JIamEKReQC55TkS6BypjkLJsBS2im2JRRITdAhzZ/WUzWhFFVQ5NjbFxa+YX2KuCL6zo6MAc3n76GU8FuURnfjOT4lggYmw1ju1Q9ou8zRcUU09N6oevkKCaKQieZHKyYHNEZ/YwZKtTObGJokvFCglxminwGLGTOM8xMrntFopDlpvEFUfE8aswNrJbvOo43LTLDSg8GR+D5V6T356ve7/u976Lr7tj3+7vDYBwE3p7WbZG8r91D9f4w6FpNXQOieKU3KF+9Oy13doblX+UYf4fl+I8yLI8Gw/IQP73ym/J8VI675bvzy3L8TIuPyt/OR57rBPdRMcnQx9IuJsjQKmu6PV1pIrPyYCO5+2t1OvdXsAwTltFkY2Et7BN0p0QRo4EQfeCAyDnLFOCnYvEKc/CdLAD1NXU7yO71pOr4IYri2qyv1TBLzwtc5wtGxabgMxnxyQdarQa4Ypacjpoz2TtKJrhBrxwYYW1Av91h6A529VuqVrprjXDILDqLLKtImvree69fGV6n2lXLr+s+au0Zn/h3RZmuaEnveg8uRmdvo5/PLqPz0enZKDj4V/5WOPqox9Vy/1efDdsf9diSaJu/FnOKc2KJe7H+RAHPcBTq/ucCxxEKUbEzLdK09q/r9jT4u+UTUSv9J6UadN8zbwtSa+E9hEbTOI+AwUHNBS9mc3zSuu/3gGQJzBAoI+RSgaApvSXYUc1ocNbd1SMAg8x926VGYQ+8KUsxzMgIvWAzTk0E3Q9f+ZBrRsOF7Wo7BGBB8eBPTLUlVZoAOsXqnFO2+P84JwRX2PU0aUeFMRB9wJljZ4EdElWim3PEUF9QPPqzDSz+ZyhOcL6wFGtFQIeK8yZLmImfTLFCJotHEGjU7WKVQYvalhEaW48VMo2BGh+0rzRzKhRWUWx1NVr4WiD5BmCevt24MWG2kVrz+GOB5TJlXr2mOA5ywO+wwf4BdBgcDsD60G/dbjPLzZzPoorQldu2sa46DJtreziwswPPAA+JrFjgWIkf2G7ODevM2a7RApRMekcmnci4esiiOXDu6nOmqhNb5CleL33PawNu9zVd2NwD9CbNlAUXFPB0woljm7+9CKySxAih06w1/Fi/Ld3rnNXh4NvtNTsy+snKm+uFLTEWjpJ4XmkDkdAR/FN7/Db7rjR05pyuzGu1AIZG/2r/Gl6abwcbSLUGLCh35gZ+hlTiU2STvqLaadLH/1P+BgFB1EE=</source>
</file>
<file path="drivers/mysql/mysql_driver.php" generated-path="drivers.mysql.mysql_driver.html" hash="e34eaefab6125a1445abf8d5175f4eda" package="Query">
<docblock line="0">
<description>Query</description>
<long-description>Free Query Builder / Database Abstraction Layer</long-description>
<tag name="package" line="0" description="Query"/>
<tag name="author" line="0" description="Timothy J. Warren"/>
<tag name="copyright" line="0" description="Copyright (c) 2012 - 2014"/>
<tag name="link" line="0" description="https://github.com/aviat4ion/Query" link="https://github.com/aviat4ion/Query"/>
<tag name="license" line="0" description="http://philsturgeon.co.uk/code/dbad-license" link="http://philsturgeon.co.uk/code/dbad-license"/>
</docblock>
<class final="false" abstract="false" namespace="Query\Driver" line="24" package="Query\Drivers">
<extends>\Query\Driver\Abstract_Driver</extends>
<name>MySQL</name>
<full_name>\Query\Driver\MySQL</full_name>
<docblock line="24">
<description>MySQL specific class</description>
<long-description>Extends PDO to simplify cross-database issues</long-description>
<tag name="package" line="24" description="Query"/>
<tag name="subpackage" line="24" description="Drivers"/>
</docblock>
<property static="false" visibility="protected" line="31" namespace="Query\Driver" package="Query\Drivers">
<name>$escape_char</name>
<default>'`'</default>
<docblock line="31">
<description>Set the backtick as the MySQL escape character</description>
<long-description></long-description>
<tag name="var" line="31" description="" type="string" variable="">
<type>string</type>
</tag>
</docblock>
</property>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="41" package="Query\Drivers">
<name>__construct</name>
<full_name>\Query\Driver\MySQL::__construct()</full_name>
<docblock line="41">
<description>Connect to MySQL Database</description>
<long-description></long-description>
<tag name="param" line="41" description="" type="string" variable="$dsn">
<type>string</type>
</tag>
<tag name="param" line="41" description="" type="string" variable="$username">
<type>string</type>
</tag>
<tag name="param" line="41" description="" type="string" variable="$password">
<type>string</type>
</tag>
<tag name="param" line="41" description="" type="array" variable="$options">
<type>array</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$dsn</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$username</name>
<default>null</default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$password</name>
<default>null</default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$options</name>
<default>array()</default>
<type>array</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="Query\Driver" line="63" package="Query\Drivers">
<name>truncate</name>
<full_name>\Query\Driver\MySQL::truncate()</full_name>
<docblock line="63">
<description>Empty a table</description>
<long-description></long-description>
<tag name="param" line="63" description="" type="string" variable="$table">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
</method>
</class>
<source>eJytVFFv2jAQfnZ+xQkhJVRAtqoPEx1dGVCpE9C1pJomVUpNYohFcFLb6RZV/e87Owl0U9en5iU+39135+8++/OXPMkd/+jIgSO4LpgscWHWF5KxagO+FjyNmQQfJlTTFVUMRiulJY00zwTMaMlknXWe02hLN4yQBgvOaaGTTBIS8F2mkxK+9eEHlZIJ642yvJR8k2gyblbgRR04/vDxGHrmd2LjUi62QEiida4Gvr/hOilW/Sjb+fSRU32CnfiHmimPmFCsisfwPOGp0oXcsExgUr/Y+lEWMz9e0bhXB2Oi7zi+D713+xxH0B1TSErN5d1E8kcmT52G8nm5vJ6BylnE1zyCKKVK/cMlHI6lilWzWQEp27TNqqHYb81ErPYTCqtAeHIcYmoSxFkyDTphsEIszaMtUGXtGkFFNGcQJdTk42gxxaadP1IJiMrFxti+Q3KZaYYxMbSrrNBkwRDce/f0RcFxJgTGgc7qGo2QDtg5VtvV6NCOlXhtu1BMGkZf8+XIwa9Mxi99KDNaQjvLjVBV03SxwonDuhCVfsMwQqeWRaQ9U7h7qDMURZp2D9i1/Tfs0Jpep+OQJ4cQFFDDryFDMXvs2+Ci9wm9fA1ezNZcsNhz7+6+T64Gg/lPpCQcBcFNeLm4DMLx1Xw+Wkxcg2ghSVMKmbXFwh1DKXvNdt2RZ0LJm5gwPIPWchrAYjSfLquuYHw1m42CKbjWdFtdg9PpnOLv2al7Rn7yTNX8uLtSPaRuB4bDIVyMZstpx47MDN66Bm7f2EYCBCfBhB4M3qD5BcPdPa2mvin/zhdyr8npLtclUEAhpv/V4d75im7wKCKiGsdgo+rxt3XCVe/swdxZrxXc3C7Ghtv7pyrq+b5VHewZX5qpiCFbg6UsjO097eNz/Acy5J2u</source>
</file>
<package name="Default" full_name="Default"/>
<package name="Query" full_name="Query">
<package name="Core" full_name="Query\Core"/>
<package name="Drivers" full_name="Query\Drivers"/>
<package name="Query_Builder" full_name="Query\Query_Builder"/>
<package name="Table_Builder" full_name="Query\Table_Builder"/>
</package>
<namespace name="global" full_name="global"/>
<namespace name="Query" full_name="Query">
<namespace name="Driver" full_name="Query\Driver"/>
</namespace>
<deprecated count="0"/>
</project>