Query/docs/structure.xml

6851 lines
344 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="f5680eade880ea5e577b50cdbf2b4d20" 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="" line="22" package="Query\Drivers">
<name>SQL_Interface</name>
<full_name>\SQL_Interface</full_name>
<docblock line="22">
<description>parent for database manipulation subclasses</description>
<long-description></long-description>
<tag name="package" line="22" description="Query"/>
<tag name="subpackage" line="22" description="Drivers"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="33" package="Query\Drivers">
<name>limit</name>
<full_name>\SQL_Interface::limit()</full_name>
<docblock line="33">
<description>Get database specific sql for limit clause</description>
<long-description></long-description>
<tag name="abstract" line="33" description=""/>
<tag name="param" line="33" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="param" line="33" description="" type="int" variable="$limit">
<type>int</type>
</tag>
<tag name="param" line="33" description="" type="int" variable="$offset">
<type>int</type>
</tag>
<tag name="return" line="33" 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="" line="41" package="Query\Drivers">
<name>explain</name>
<full_name>\SQL_Interface::explain()</full_name>
<docblock line="41">
<description>Modify the query to get the query plan</description>
<long-description></long-description>
<tag name="param" line="41" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="return" line="41" 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="" line="49" package="Query\Drivers">
<name>random</name>
<full_name>\SQL_Interface::random()</full_name>
<docblock line="49">
<description>Get the sql for random ordering</description>
<long-description></long-description>
<tag name="abstract" line="49" description=""/>
<tag name="return" line="49" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="56" package="Query\Drivers">
<name>db_list</name>
<full_name>\SQL_Interface::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="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="63" package="Query\Drivers">
<name>table_list</name>
<full_name>\SQL_Interface::table_list()</full_name>
<docblock line="63">
<description>Returns sql to list tables</description>
<long-description></long-description>
<tag name="return" line="63" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="70" package="Query\Drivers">
<name>system_table_list</name>
<full_name>\SQL_Interface::system_table_list()</full_name>
<docblock line="70">
<description>Returns sql to list system tables</description>
<long-description></long-description>
<tag name="return" line="70" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="77" package="Query\Drivers">
<name>view_list</name>
<full_name>\SQL_Interface::view_list()</full_name>
<docblock line="77">
<description>Returns sql to list views</description>
<long-description></long-description>
<tag name="return" line="77" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="84" package="Query\Drivers">
<name>trigger_list</name>
<full_name>\SQL_Interface::trigger_list()</full_name>
<docblock line="84">
<description>Returns sql to list triggers</description>
<long-description></long-description>
<tag name="return" line="84" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="91" package="Query\Drivers">
<name>function_list</name>
<full_name>\SQL_Interface::function_list()</full_name>
<docblock line="91">
<description>Return sql to list functions</description>
<long-description></long-description>
<tag name="return" line="91" description="" type="NULL">
<type>NULL</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="98" package="Query\Drivers">
<name>procedure_list</name>
<full_name>\SQL_Interface::procedure_list()</full_name>
<docblock line="98">
<description>Return sql to list stored procedures</description>
<long-description></long-description>
<tag name="return" line="98" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="105" package="Query\Drivers">
<name>sequence_list</name>
<full_name>\SQL_Interface::sequence_list()</full_name>
<docblock line="105">
<description>Return sql to list sequences</description>
<long-description></long-description>
<tag name="return" line="105" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="112" package="Query\Drivers">
<name>type_list</name>
<full_name>\SQL_Interface::type_list()</full_name>
<docblock line="112">
<description>Return sql to list database field types</description>
<long-description></long-description>
<tag name="return" line="112" description="" type="mixed">
<type>mixed</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="121" package="Query\Drivers">
<name>column_list</name>
<full_name>\SQL_Interface::column_list()</full_name>
<docblock line="121">
<description>Get information about the columns in the
specified table</description>
<long-description></long-description>
<tag name="param" line="121" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="121" 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>eJytVU1v1DAQPSe/Yg49bKt2A1VPfIgW+iHQglQK4rhy7ElibWKn/iiNEP+dsZPstmpXZBF7WWcy772ZZ3vy5l1btWl2cJDCAVx7NB0twvrSIPYBeO9lLdBABufMsZxZhLPcOsO4k1rBgnVoBtQp867SJkm+yUa7qoNPc/jBjEEV33LddkaWlUs+jCuY8X04fvHyGI7C30nMq6VaQZJUzrX2VZaV0lU+n3PdZOxOMndCstlYbMjmqCz2+ZTeVrK2zpsStSLQ3K8yrgVmImfiaEiOwJbxFSsJOHJlaZplcPTffunobMvIAgeFNiBGDxumZOtrFk20Puc1sxbt6ORQHGz6pJwxeG7kHRobS5bKoSkYR7i5Xiw/rp9+pWkS5BPCXqHbCNsWuSwkB3tbx5Jq2UgHpO/JGEqPkFM27HH/RB2wBigiVQl7hHwYphJgL7I8ieqisDiEDdKuqIEkhLI0aX1OWwKFV/1piiyzIHA4UB6OJG8vzxY3F/uvH/T1WQtZdOAqhNt4Vp2GknrdBNqaqU1PW7qYUhjeE5VUsbRHNVwNeqObhimhG9CG7sxA95yhUzR7qtkjua8RZ6McdVtL64CuGm5Olt1IThER+TKQ/F2F2OtdySNmIr/trMPmn2R66HIXtTuJP3dUCZCpXtFwK8MN3c2tHrVV45HEiHqq8eX7YrFFYVxMk7BOGxTQGs1ReLPrrqxxE9WQrqziO+/9AJsmsp6ChcRagOvaZ/QaeY9i2x4R4hmpMAWkovvf9AOd5dr3c4Hr2jd0PKQKjzF5mMBkbTyx2+bT+uU0I3qhvrYeGyr8HT5pF0qALoIRy/XnYk5f/j842G30</source>
</file>
<file path="drivers/firebird/firebird_result.php" generated-path="drivers.firebird.firebird_result.html" hash="d9a84ea4d4b723dd8e7923b8e2c34c26" 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="" line="23" package="Query\Drivers">
<extends>\PDOStatement</extends>
<name>Firebird_Result</name>
<full_name>\Firebird_Result</full_name>
<docblock line="23">
<description>Firebird result class to emulate PDOStatement Class - only implements
data-fetching methods</description>
<long-description></long-description>
<tag name="package" line="23" description="Query"/>
<tag name="subpackage" line="23" description="Drivers"/>
</docblock>
<property static="false" visibility="private" line="30" namespace="" package="Query\Drivers">
<name>$statement</name>
<default></default>
<docblock line="30">
<description>Reference to fbird resource</description>
<long-description></long-description>
<tag name="var" line="30" description="" type="resource" variable="">
<type>resource</type>
</tag>
</docblock>
</property>
<property static="false" visibility="private" line="37" namespace="" package="Query\Drivers">
<name>$row</name>
<default></default>
<docblock line="37">
<description>Current row in result array</description>
<long-description></long-description>
<tag name="var" line="37" description="" type="int" variable="">
<type>int</type>
</tag>
</docblock>
</property>
<property static="false" visibility="private" line="44" namespace="" package="Query\Drivers">
<name>$result</name>
<default>array()</default>
<docblock line="44">
<description>Data pulled from query</description>
<long-description></long-description>
<tag name="param" line="44" description="" type="mixed" variable="">
<type>mixed</type>
</tag>
</docblock>
</property>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="52" package="Query\Drivers">
<name>__construct</name>
<full_name>\Firebird_Result::__construct()</full_name>
<docblock line="52">
<description>Create the object by passing the resource for
the query</description>
<long-description></long-description>
<tag name="param" line="52" 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="" line="86" package="Query\Drivers">
<name>bindColumn</name>
<full_name>\Firebird_Result::bindColumn()</full_name>
<docblock line="86">
<description>Invalidate method for data consistency</description>
<long-description></long-description>
<tag name="param" line="86" description="" type="mixed" variable="$column">
<type>mixed</type>
</tag>
<tag name="param" line="86" description="" type="mixed" variable="$param">
<type>mixed</type>
</tag>
<tag name="param" line="86" description="" type="int" variable="$type">
<type>int</type>
</tag>
<tag name="param" line="86" description="" type="mixed" variable="$maxlen">
<type>mixed</type>
</tag>
<tag name="param" line="86" description="" type="array" variable="$driverdata">
<type>array</type>
</tag>
<tag name="return" line="86" 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="" line="103" package="Query\Drivers">
<name>bindParam</name>
<full_name>\Firebird_Result::bindParam()</full_name>
<docblock line="103">
<description>Invalidate method for data consistency</description>
<long-description></long-description>
<tag name="param" line="103" description="" type="mixed" variable="$parameter">
<type>mixed</type>
</tag>
<tag name="param" line="103" description="" type="mixed" variable="$variable">
<type>mixed</type>
</tag>
<tag name="param" line="103" description="" type="int" variable="$data_type">
<type>int</type>
</tag>
<tag name="param" line="103" description="" type="mixed" variable="$maxlen">
<type>mixed</type>
</tag>
<tag name="param" line="103" description="" type="array" variable="$driverdata">
<type>array</type>
</tag>
<tag name="return" line="103" 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="" line="118" package="Query\Drivers">
<name>bindValue</name>
<full_name>\Firebird_Result::bindValue()</full_name>
<docblock line="118">
<description>Invalidate method for data consistency</description>
<long-description></long-description>
<tag name="param" line="118" description="" type="mixed" variable="$parameter">
<type>mixed</type>
</tag>
<tag name="param" line="118" description="" type="mixed" variable="$variable">
<type>mixed</type>
</tag>
<tag name="param" line="118" description="" type="int" variable="$data_type">
<type>int</type>
</tag>
<tag name="return" line="118" 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="" line="131" package="Query\Drivers">
<name>execute</name>
<full_name>\Firebird_Result::execute()</full_name>
<docblock line="131">
<description>Run a prepared statement query</description>
<long-description></long-description>
<tag name="param" line="131" description="" type="array" variable="$args">
<type>array</type>
</tag>
<tag name="return" line="131" description="" type="\Firebird_Result">
<type link="Firebird_Result.html">\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="" line="154" package="Query\Drivers">
<name>fetch</name>
<full_name>\Firebird_Result::fetch()</full_name>
<docblock line="154">
<description>Emulate PDO fetch public function</description>
<long-description></long-description>
<tag name="param" line="154" description="" type="int" variable="$fetch_style">
<type>int</type>
</tag>
<tag name="param" line="154" description="" type="mixed" variable="$cursor_orientation">
<type>mixed</type>
</tag>
<tag name="param" line="154" description="" type="mixed" variable="$cursor_offset">
<type>mixed</type>
</tag>
<tag name="return" line="154" 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="" line="199" package="Query\Drivers">
<name>fetchAll</name>
<full_name>\Firebird_Result::fetchAll()</full_name>
<docblock line="199">
<description>Emulate PDO fetchAll public function</description>
<long-description></long-description>
<tag name="param" line="199" description="" type="int" variable="$fetch_style">
<type>int</type>
</tag>
<tag name="param" line="199" description="" type="mixed" variable="$statement">
<type>mixed</type>
</tag>
<tag name="param" line="199" description="" type="mixed" variable="$ctor_args">
<type>mixed</type>
</tag>
<tag name="return" line="199" 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="" line="221" package="Query\Drivers">
<name>fetchColumn</name>
<full_name>\Firebird_Result::fetchColumn()</full_name>
<docblock line="221">
<description>Emulate PDOStatement::fetchColumn</description>
<long-description></long-description>
<tag name="param" line="221" description="" type="int" variable="$column_num">
<type>int</type>
</tag>
<tag name="return" line="221" 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="" line="236" package="Query\Drivers">
<name>fetchObject</name>
<full_name>\Firebird_Result::fetchObject()</full_name>
<docblock line="236">
<description>Emulate PDOStatement::fetchObject, but only for the default use</description>
<long-description></long-description>
<tag name="param" line="236" description="" type="string" variable="$class_name">
<type>string</type>
</tag>
<tag name="param" line="236" description="" type="array" variable="$ctor_args">
<type>array</type>
</tag>
<tag name="return" line="236" description="" type="\stdClass">
<type link="stdClass.html">\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="" line="248" package="Query\Drivers">
<name>rowCount</name>
<full_name>\Firebird_Result::rowCount()</full_name>
<docblock line="248">
<description>Return the number of rows affected by the previous query</description>
<long-description></long-description>
<tag name="return" line="248" description="" type="int">
<type>int</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="268" package="Query\Drivers">
<name>errorCode</name>
<full_name>\Firebird_Result::errorCode()</full_name>
<docblock line="268">
<description>Method to emulate PDOStatement-&gt;errorCode</description>
<long-description></long-description>
<tag name="return" line="268" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="280" package="Query\Drivers">
<name>errorInfo</name>
<full_name>\Firebird_Result::errorInfo()</full_name>
<docblock line="280">
<description>Method to emulate PDO-&gt;errorInfo / PDOStatement-&gt;errorInfo</description>
<long-description></long-description>
<tag name="return" line="280" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
</class>
<source>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</source>
</file>
<file path="drivers/firebird/firebird_util.php" generated-path="drivers.firebird.firebird_util.html" hash="5225a55c869165200127e6d5d1fbf0d5" 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="" line="25" package="Query\Drivers">
<extends>\DB_Util</extends>
<name>Firebird_Util</name>
<full_name>\Firebird_Util</full_name>
<docblock line="25">
<description>Firebird-specific backup, import and creation methods</description>
<long-description></long-description>
<tag name="package" line="25" description="Query"/>
<tag name="subpackage" line="25" description="Drivers"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="33" package="Query\Drivers">
<name>delete_table</name>
<full_name>\Firebird_Util::delete_table()</full_name>
<docblock line="33">
<description>Drop the selected table</description>
<long-description></long-description>
<tag name="param" line="33" description="" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="return" line="33" 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="" line="45" package="Query\Drivers">
<name>backup_structure</name>
<full_name>\Firebird_Util::backup_structure()</full_name>
<docblock line="45">
<description>Create an SQL backup file for the current database's structure</description>
<long-description></long-description>
<tag name="return" line="45" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="60" package="Query\Drivers">
<name>backup_data</name>
<full_name>\Firebird_Util::backup_data()</full_name>
<docblock line="60">
<description>Create an SQL backup file for the current database's data</description>
<long-description></long-description>
<tag name="param" line="60" description="" type="array" variable="$exclude">
<type>array</type>
</tag>
<tag name="param" line="60" description="" type="bool" variable="$system_tables">
<type>bool</type>
</tag>
<tag name="return" line="60" 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="25">
<name>get_system_tables</name>
<docblock>
<description/>
<long-description/>
<tag name="magic" line="25"/>
<tag name="return" line="25" type="">
<type/>
</tag>
<tag name="method" line="25" description="" method_name="get_system_tables"/>
</docblock>
</method>
<method final="false" static="false" visibility="public" line="25">
<name>get_tables</name>
<docblock>
<description/>
<long-description/>
<tag name="magic" line="25"/>
<tag name="return" line="25" type="">
<type/>
</tag>
<tag name="method" line="25" description="" method_name="get_tables"/>
</docblock>
</method>
<method final="false" static="false" visibility="public" line="25">
<name>query</name>
<docblock>
<description/>
<long-description/>
<tag name="magic" line="25"/>
<tag name="return" line="25" type="">
<type/>
</tag>
<tag name="method" line="25" description="" method_name="query"/>
</docblock>
</method>
</class>
<markers>
<todo line="47">Implement Backup structure function</todo>
</markers>
<source>eJzNVt9v2zYQfpb+ipthTFJgW23Rp6Tu4tjOlsGxm9jZHprCoCTa4iKJCkklNYr87z2SkuwEKbABfZhfLB3v13ff3YkffivT0g2Pjlw4gquKih0+6OdzQakVwFnFsoQKCGFCFImIpDCKpBIkVowXMCM7Kmqr05LEd2RLHafxBaekUikXjrNiOVfpDv4cwN9ECFqY05iXO8G2qXLGzRP4cQDv3rx9B339997oZay4A8dJlSrlcRhumUqraBDzPCQPjKj3mEm4j5mxmBaSWn1UL1OWSVWJLeUFGg2quzDmCQ2TiCT9WhkNQ9cNQ+j/tJ/bVPacCRoxkfRlSWO2YTFEWKiq7AHLSy4UkCKBWFBiKppTrFgiX9QU9vBkFTXCiWAPVEgjtnaAxSU72FK1ljupaL5G0jIq/eB1pddOefQPjRXc64g+Us2KLXTlfRaYIsUZkbLFtL5RLAP6VdEikTA5s+/fXNfR4B30OhG8BJVSkDRDtzQBE1OfmXNEKEgOTZyC5NTKBUXOivpAi0LXKasICYNNVdj2S9CnohaFb2wD1/nmOk5t7E2uF59gNTqbTaHjDYzGwOt4J67zpHP8uXy3mMeaTIq8wvJqVrMNG5ZR2HBhihFXeggUJPVQeVIDrWLM+qA0/6YE1vu6tfbrCiC21WKygIu8zGiuY53ZPFrN1sdBvf6XldGPL/vFtnCXfo2zKqGHJxHnGfbrYff/52rqiH7jfGhi+UHvhdfh+Wi2nO7LPcFWFDkrKDymLE5tn0tQHCpcMI7DNv5zBzAcwur6RrswPpxuI7fw1jnFpeV3Vcpk/+MrM40Z7c8aYYAUIoeOQzMT9oXnVyysgQVxzjJEAbxSho3abMcrSHjhKXgkhbJY4Begeal2bZ2CH+JI2AaxW2GvJW0ft4vhygrh3Wdoo5vQJvM7tVloOkyDUIJ1tfsJNVCiBY1nIBLR7ZOovS2ns+l4pffw9eJSbwHkP0eboF4EqCkOK2P3nll49hTjrWsN/Ot/3FAVp6Ms8z9NFsfH59PV+I/1aLlcjAOTt2kFUyuSJJp9jcC0ONvsawpM2vJpCzzwY14Vym+CBfAB3gYQ80KxoqKt4zmJ7JTwrMoL0PtMQmR2udL7U5/d0Z0EvqnjCqlA8EeDxFppJKeWGK3axvz85kuNoMvwkyjUGu1aEv09unqItX+riDOFAr1kpFZpeWkqp4lBX5oay42jX9v2eCBZhX1oVGwQHeWq4hjEnmkPBaUJfj0QrNqV1GhhF+ppLjkaqx5415OzrhfgWA2hmc024vOQOSl9C+tXQzsa3+t4np4pm8frRp7uHu+Z0pPbQlrXnzFsu4v5cnq9gov5avGi6cDHd/z0Z3gJ8b1Or6Pd1dTo8wD+Gs1upkvwD9R6TcyBF5x4J+5hFec3s1kjOWDu8xfTsm1WJlub7OHADYbQuS1ui+V0hdtoNF+OxquLxfzktui04VGhg/EPnAcDlI0Xl5cXq5NOO8j1ij1wb74nT/pmNcVbDnblprk5VHhTGOAF9DveqQ9n</source>
</file>
<file path="classes/query_builder.php" generated-path="classes.query_builder.html" hash="4a7e937a5e013df5a91de7b20136717f" 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="" line="23" package="Query\Query_Builder">
<extends/>
<implements>\Query_Builder_Interface</implements>
<name>Query_Builder</name>
<full_name>\Query_Builder</full_name>
<docblock line="23">
<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="23" description="Query"/>
<tag name="subpackage" line="23" description="Query_Builder"/>
</docblock>
<property static="false" visibility="protected" line="33" namespace="" package="Query\Query_Builder">
<name>$select_string</name>
<default>''</default>
<docblock line="33">
<description>Compiled 'select' clause</description>
<long-description></long-description>
<tag name="var" line="33" description="&lt;p&gt;string&lt;/p&gt;" type="\type" variable="">
<type link="type.html">\type</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="39" namespace="" package="Query\Query_Builder">
<name>$from_string</name>
<default></default>
<docblock line="39">
<description>Compiled 'from' clause</description>
<long-description></long-description>
<tag name="var" line="39" description="&lt;p&gt;string&lt;/p&gt;" type="\type" variable="">
<type link="type.html">\type</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="45" namespace="" package="Query\Query_Builder">
<name>$set_string</name>
<default></default>
<docblock line="45">
<description>Compiled arguments for insert / update</description>
<long-description></long-description>
<tag name="var" line="45" description="" type="string" variable="">
<type>string</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="51" namespace="" package="Query\Query_Builder">
<name>$order_string</name>
<default></default>
<docblock line="51">
<description>Order by clause</description>
<long-description></long-description>
<tag name="var" line="51" description="" type="string" variable="">
<type>string</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="57" namespace="" package="Query\Query_Builder">
<name>$group_string</name>
<default></default>
<docblock line="57">
<description>Group by clause</description>
<long-description></long-description>
<tag name="var" line="57" description="" type="string" variable="">
<type>string</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="67" namespace="" package="Query\Query_Builder">
<name>$set_array_keys</name>
<default>array()</default>
<docblock line="67">
<description>Keys for insert/update statement</description>
<long-description></long-description>
<tag name="var" line="67" description="" type="array" variable="">
<type>array</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="73" namespace="" package="Query\Query_Builder">
<name>$order_array</name>
<default>array()</default>
<docblock line="73">
<description>Key/val pairs for order by clause</description>
<long-description></long-description>
<tag name="var" line="73" description="" type="array" variable="">
<type>array</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="79" namespace="" package="Query\Query_Builder">
<name>$group_array</name>
<default>array()</default>
<docblock line="79">
<description>Key/val pairs for group by clause</description>
<long-description></long-description>
<tag name="var" line="79" description="" type="array" variable="">
<type>array</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="89" namespace="" package="Query\Query_Builder">
<name>$values</name>
<default>array()</default>
<docblock line="89">
<description>Values to apply to prepared statements</description>
<long-description></long-description>
<tag name="var" line="89" description="" type="array" variable="">
<type>array</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="95" namespace="" package="Query\Query_Builder">
<name>$where_values</name>
<default>array()</default>
<docblock line="95">
<description>Values to apply to where clauses in prepared statements</description>
<long-description></long-description>
<tag name="var" line="95" description="" type="array" variable="">
<type>array</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="101" namespace="" package="Query\Query_Builder">
<name>$limit</name>
<default></default>
<docblock line="101">
<description>Value for limit string</description>
<long-description></long-description>
<tag name="var" line="101" description="&lt;p&gt;string&lt;/p&gt;" type="\type" variable="">
<type link="type.html">\type</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="107" namespace="" package="Query\Query_Builder">
<name>$offset</name>
<default></default>
<docblock line="107">
<description>Value for offset in limit string</description>
<long-description></long-description>
<tag name="var" line="107" description="" type="int" variable="">
<type>int</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="122" namespace="" package="Query\Query_Builder">
<name>$query_map</name>
<default>array()</default>
<docblock line="122">
<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="122" description="" type="array" variable="">
<type>array</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="129" namespace="" package="Query\Query_Builder">
<name>$having_map</name>
<default></default>
<docblock line="129">
<description>Map for having clause</description>
<long-description></long-description>
<tag name="var" line="129" description="" type="array" variable="">
<type>array</type>
</tag>
</docblock>
</property>
<property static="false" visibility="public" line="135" namespace="" package="Query\Query_Builder">
<name>$conn_name</name>
<default>""</default>
<docblock line="135">
<description>Convenience property for connection management</description>
<long-description></long-description>
<tag name="var" line="135" description="" type="string" variable="">
<type>string</type>
</tag>
</docblock>
</property>
<property static="false" visibility="public" line="141" namespace="" package="Query\Query_Builder">
<name>$queries</name>
<default></default>
<docblock line="141">
<description>List of queries executed</description>
<long-description></long-description>
<tag name="var" line="141" description="" type="array" variable="">
<type>array</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="147" namespace="" package="Query\Query_Builder">
<name>$explain</name>
<default></default>
<docblock line="147">
<description>Whether to do only an explain on the query</description>
<long-description></long-description>
<tag name="var" line="147" description="" type="bool" variable="">
<type>bool</type>
</tag>
</docblock>
</property>
<property static="false" visibility="public" line="153" namespace="" package="Query\Query_Builder">
<name>$db</name>
<default></default>
<docblock line="153">
<description>The current database driver</description>
<long-description></long-description>
<tag name="var" line="153" description="" type="\Driver_Interface" variable="">
<type link="Driver_Interface.html">\Driver_Interface</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="159" namespace="" package="Query\Query_Builder">
<name>$parser</name>
<default></default>
<docblock line="159">
<description>Query parser class instance</description>
<long-description></long-description>
<tag name="var" line="159" description="" type="\Query_Parser" variable="">
<type link="Query_Parser.html">\Query_Parser</type>
</tag>
</docblock>
</property>
<property static="false" visibility="public" line="165" namespace="" package="Query\Query_Builder">
<name>$util</name>
<default></default>
<docblock line="165">
<description>Alias to $this-&gt;db-&gt;util</description>
<long-description></long-description>
<tag name="var" line="165" description="" type="\DB_Util" variable="">
<type link="DB_Util.html">\DB_Util</type>
</tag>
</docblock>
</property>
<property static="false" visibility="public" line="171" namespace="" package="Query\Query_Builder">
<name>$sql</name>
<default></default>
<docblock line="171">
<description>Alias to $this-&gt;db-&gt;sql</description>
<long-description></long-description>
<tag name="var" line="171" description="" type="\SQL_Interface" variable="">
<type link="SQL_Interface.html">\SQL_Interface</type>
</tag>
</docblock>
</property>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="183" package="Query\Query_Builder">
<name>__construct</name>
<full_name>\Query_Builder::__construct()</full_name>
<docblock line="183">
<description>Constructor</description>
<long-description></long-description>
<tag name="param" line="183" description="" type="\Abstract_driver" variable="$db">
<type link="Abstract_driver.html">\Abstract_driver</type>
</tag>
<tag name="param" line="183" description="&lt;ul&gt;&#10;&lt;li&gt;the connection parameters&lt;/li&gt;&#10;&lt;/ul&gt;" type="object" variable="$params">
<type>object</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$db</name>
<default></default>
<type>\Abstract_driver</type>
</argument>
<argument line="0" by_reference="false">
<name>$params</name>
<default></default>
<type>object</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="208" package="Query\Query_Builder">
<name>__destruct</name>
<full_name>\Query_Builder::__destruct()</full_name>
<docblock line="208">
<description>Destructor</description>
<long-description></long-description>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="protected" namespace="" line="224" package="Query\Query_Builder">
<name>_select</name>
<full_name>\Query_Builder::_select()</full_name>
<docblock line="224">
<description>Method to simplify select_ methods</description>
<long-description></long-description>
<tag name="param" line="224" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="224" description="" type="string" variable="$as">
<type>string</type>
</tag>
<tag name="return" line="224" 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="" line="242" package="Query\Query_Builder">
<name>select</name>
<full_name>\Query_Builder::select()</full_name>
<docblock line="242">
<description>Specifies rows to select in a query</description>
<long-description></long-description>
<tag name="param" line="242" description="" type="string" variable="$fields">
<type>string</type>
</tag>
<tag name="return" line="242" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="288" package="Query\Query_Builder">
<name>select_max</name>
<full_name>\Query_Builder::select_max()</full_name>
<docblock line="288">
<description>Selects the maximum value of a field from a query</description>
<long-description></long-description>
<tag name="param" line="288" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="288" description="" type="string" variable="$as">
<type>string</type>
</tag>
<tag name="return" line="288" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="304" package="Query\Query_Builder">
<name>select_min</name>
<full_name>\Query_Builder::select_min()</full_name>
<docblock line="304">
<description>Selects the minimum value of a field from a query</description>
<long-description></long-description>
<tag name="param" line="304" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="304" description="" type="string" variable="$as">
<type>string</type>
</tag>
<tag name="return" line="304" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="320" package="Query\Query_Builder">
<name>select_avg</name>
<full_name>\Query_Builder::select_avg()</full_name>
<docblock line="320">
<description>Selects the average value of a field from a query</description>
<long-description></long-description>
<tag name="param" line="320" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="320" description="" type="string" variable="$as">
<type>string</type>
</tag>
<tag name="return" line="320" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="336" package="Query\Query_Builder">
<name>select_sum</name>
<full_name>\Query_Builder::select_sum()</full_name>
<docblock line="336">
<description>Selects the sum of a field from a query</description>
<long-description></long-description>
<tag name="param" line="336" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="336" description="" type="string" variable="$as">
<type>string</type>
</tag>
<tag name="return" line="336" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="350" package="Query\Query_Builder">
<name>distinct</name>
<full_name>\Query_Builder::distinct()</full_name>
<docblock line="350">
<description>Adds the 'distinct' keyword to a query</description>
<long-description></long-description>
<tag name="return" line="350" description="" type="\Query_Builder">
<type link="Query_Builder.html">\Query_Builder</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="364" package="Query\Query_Builder">
<name>explain</name>
<full_name>\Query_Builder::explain()</full_name>
<docblock line="364">
<description>Tell the database to give you the query plan instead of result set</description>
<long-description></long-description>
<tag name="return" line="364" description="" type="\Query_Builder">
<type link="Query_Builder.html">\Query_Builder</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="378" package="Query\Query_Builder">
<name>from</name>
<full_name>\Query_Builder::from()</full_name>
<docblock line="378">
<description>Specify the database table to select from</description>
<long-description></long-description>
<tag name="param" line="378" description="" type="string" variable="$tblname">
<type>string</type>
</tag>
<tag name="return" line="378" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="408" package="Query\Query_Builder">
<name>_like</name>
<full_name>\Query_Builder::_like()</full_name>
<docblock line="408">
<description>Simplify 'like' methods</description>
<long-description></long-description>
<tag name="param" line="408" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="408" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="408" description="" type="string" variable="$pos">
<type>string</type>
</tag>
<tag name="param" line="408" description="" type="string" variable="$like">
<type>string</type>
</tag>
<tag name="param" line="408" description="" type="string" variable="$conj">
<type>string</type>
</tag>
<tag name="return" line="408" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="450" package="Query\Query_Builder">
<name>like</name>
<full_name>\Query_Builder::like()</full_name>
<docblock line="450">
<description>Creates a Like clause in the sql statement</description>
<long-description></long-description>
<tag name="param" line="450" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="450" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="450" description="" type="string" variable="$pos">
<type>string</type>
</tag>
<tag name="return" line="450" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="465" package="Query\Query_Builder">
<name>or_like</name>
<full_name>\Query_Builder::or_like()</full_name>
<docblock line="465">
<description>Generates an OR Like clause</description>
<long-description></long-description>
<tag name="param" line="465" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="465" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="465" description="" type="string" variable="$pos">
<type>string</type>
</tag>
<tag name="return" line="465" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="480" package="Query\Query_Builder">
<name>not_like</name>
<full_name>\Query_Builder::not_like()</full_name>
<docblock line="480">
<description>Generates a NOT LIKE clause</description>
<long-description></long-description>
<tag name="param" line="480" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="480" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="480" description="" type="string" variable="$pos">
<type>string</type>
</tag>
<tag name="return" line="480" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="495" package="Query\Query_Builder">
<name>or_not_like</name>
<full_name>\Query_Builder::or_not_like()</full_name>
<docblock line="495">
<description>Generates a OR NOT LIKE clause</description>
<long-description></long-description>
<tag name="param" line="495" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="495" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="495" description="" type="string" variable="$pos">
<type>string</type>
</tag>
<tag name="return" line="495" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="512" package="Query\Query_Builder">
<name>_having</name>
<full_name>\Query_Builder::_having()</full_name>
<docblock line="512">
<description>Simplify building having clauses</description>
<long-description></long-description>
<tag name="param" line="512" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="512" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="512" description="" type="string" variable="$conj">
<type>string</type>
</tag>
<tag name="return" line="512" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="547" package="Query\Query_Builder">
<name>having</name>
<full_name>\Query_Builder::having()</full_name>
<docblock line="547">
<description>Generates a 'Having' clause</description>
<long-description></long-description>
<tag name="param" line="547" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="547" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="547" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="561" package="Query\Query_Builder">
<name>or_having</name>
<full_name>\Query_Builder::or_having()</full_name>
<docblock line="561">
<description>Generates a 'Having' clause prefixed with 'OR'</description>
<long-description></long-description>
<tag name="param" line="561" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="561" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="561" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="577" package="Query\Query_Builder">
<name>_where</name>
<full_name>\Query_Builder::_where()</full_name>
<docblock line="577">
<description>Do all the repeditive stuff for where/having type methods</description>
<long-description></long-description>
<tag name="param" line="577" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="577" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="577" 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="" line="610" package="Query\Query_Builder">
<name>_where_string</name>
<full_name>\Query_Builder::_where_string()</full_name>
<docblock line="610">
<description>Simplify generating where string</description>
<long-description></long-description>
<tag name="param" line="610" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="610" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="610" description="" type="string" variable="$conj">
<type>string</type>
</tag>
<tag name="return" line="610" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="665" package="Query\Query_Builder">
<name>_where_in</name>
<full_name>\Query_Builder::_where_in()</full_name>
<docblock line="665">
<description>Simplify where_in methods</description>
<long-description></long-description>
<tag name="param" line="665" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="665" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="665" 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="665" 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="665" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="698" package="Query\Query_Builder">
<name>where</name>
<full_name>\Query_Builder::where()</full_name>
<docblock line="698">
<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="698" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="698" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="698" description="" type="mixed" variable="$escape">
<type>mixed</type>
</tag>
<tag name="return" line="698" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="712" package="Query\Query_Builder">
<name>or_where</name>
<full_name>\Query_Builder::or_where()</full_name>
<docblock line="712">
<description>Where clause prefixed with "OR"</description>
<long-description></long-description>
<tag name="param" line="712" description="" type="string" variable="$key">
<type>string</type>
</tag>
<tag name="param" line="712" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="712" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="726" package="Query\Query_Builder">
<name>where_in</name>
<full_name>\Query_Builder::where_in()</full_name>
<docblock line="726">
<description>Where clause with 'IN' statement</description>
<long-description></long-description>
<tag name="param" line="726" description="" type="mixed" variable="$field">
<type>mixed</type>
</tag>
<tag name="param" line="726" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="726" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="740" package="Query\Query_Builder">
<name>or_where_in</name>
<full_name>\Query_Builder::or_where_in()</full_name>
<docblock line="740">
<description>Where in statement prefixed with "or"</description>
<long-description></long-description>
<tag name="param" line="740" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="740" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="740" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="754" package="Query\Query_Builder">
<name>where_not_in</name>
<full_name>\Query_Builder::where_not_in()</full_name>
<docblock line="754">
<description>WHERE NOT IN (FOO) clause</description>
<long-description></long-description>
<tag name="param" line="754" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="754" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="754" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="768" package="Query\Query_Builder">
<name>or_where_not_in</name>
<full_name>\Query_Builder::or_where_not_in()</full_name>
<docblock line="768">
<description>OR WHERE NOT IN (FOO) clause</description>
<long-description></long-description>
<tag name="param" line="768" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="768" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="768" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="784" package="Query\Query_Builder">
<name>set</name>
<full_name>\Query_Builder::set()</full_name>
<docblock line="784">
<description>Sets values for inserts / updates / deletes</description>
<long-description></long-description>
<tag name="param" line="784" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="784" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="784" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="823" package="Query\Query_Builder">
<name>join</name>
<full_name>\Query_Builder::join()</full_name>
<docblock line="823">
<description>Creates a join phrase in a compiled query</description>
<long-description></long-description>
<tag name="param" line="823" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="823" description="" type="string" variable="$condition">
<type>string</type>
</tag>
<tag name="param" line="823" description="" type="string" variable="$type">
<type>string</type>
</tag>
<tag name="return" line="823" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="865" package="Query\Query_Builder">
<name>group_by</name>
<full_name>\Query_Builder::group_by()</full_name>
<docblock line="865">
<description>Group the results by the selected field(s)</description>
<long-description></long-description>
<tag name="param" line="865" description="" type="mixed" variable="$field">
<type>mixed</type>
</tag>
<tag name="return" line="865" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="891" package="Query\Query_Builder">
<name>order_by</name>
<full_name>\Query_Builder::order_by()</full_name>
<docblock line="891">
<description>Order the results by the selected field(s)</description>
<long-description></long-description>
<tag name="param" line="891" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="891" description="" type="string" variable="$type">
<type>string</type>
</tag>
<tag name="return" line="891" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="928" package="Query\Query_Builder">
<name>limit</name>
<full_name>\Query_Builder::limit()</full_name>
<docblock line="928">
<description>Set a limit on the current sql statement</description>
<long-description></long-description>
<tag name="param" line="928" description="" type="int" variable="$limit">
<type>int</type>
</tag>
<tag name="param" line="928" description="" type="int" variable="$offset">
<type>int</type>
</tag>
<tag name="return" line="928" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="945" package="Query\Query_Builder">
<name>group_start</name>
<full_name>\Query_Builder::group_start()</full_name>
<docblock line="945">
<description>Adds a paren to the current query for query grouping</description>
<long-description></long-description>
<tag name="return" line="945" description="" type="\Query_Builder">
<type link="Query_Builder.html">\Query_Builder</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="964" package="Query\Query_Builder">
<name>or_group_start</name>
<full_name>\Query_Builder::or_group_start()</full_name>
<docblock line="964">
<description>Adds a paren to the current query for query grouping,
prefixed with 'OR'</description>
<long-description></long-description>
<tag name="return" line="964" description="" type="\Query_Builder">
<type link="Query_Builder.html">\Query_Builder</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="983" package="Query\Query_Builder">
<name>or_not_group_start</name>
<full_name>\Query_Builder::or_not_group_start()</full_name>
<docblock line="983">
<description>Adds a paren to the current query for query grouping,
prefixed with 'OR NOT'</description>
<long-description></long-description>
<tag name="return" line="983" description="" type="\Query_Builder">
<type link="Query_Builder.html">\Query_Builder</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="1001" package="Query\Query_Builder">
<name>group_end</name>
<full_name>\Query_Builder::group_end()</full_name>
<docblock line="1001">
<description>Ends a query group</description>
<long-description></long-description>
<tag name="return" line="1001" description="" type="\Query_Builder">
<type link="Query_Builder.html">\Query_Builder</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="1025" package="Query\Query_Builder">
<name>get</name>
<full_name>\Query_Builder::get()</full_name>
<docblock line="1025">
<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="1025" description="" type="" variable="$table"/>
<tag name="param" line="1025" description="" type="int" variable="$limit">
<type>int</type>
</tag>
<tag name="param" line="1025" description="" type="int" variable="$offset">
<type>int</type>
</tag>
<tag name="return" line="1025" description="" type="\PDOStatement">
<type link="PDOStatement.html">\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="" line="1053" package="Query\Query_Builder">
<name>get_where</name>
<full_name>\Query_Builder::get_where()</full_name>
<docblock line="1053">
<description>Convience method for get() with a where clause</description>
<long-description></long-description>
<tag name="param" line="1053" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1053" description="" type="array" variable="$where">
<type>array</type>
</tag>
<tag name="param" line="1053" description="" type="int" variable="$limit">
<type>int</type>
</tag>
<tag name="param" line="1053" description="" type="int" variable="$offset">
<type>int</type>
</tag>
<tag name="return" line="1053" description="" type="\PDOStatement">
<type link="PDOStatement.html">\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="" line="1070" package="Query\Query_Builder">
<name>count_all</name>
<full_name>\Query_Builder::count_all()</full_name>
<docblock line="1070">
<description>Retreive the number of rows in the selected table</description>
<long-description></long-description>
<tag name="param" line="1070" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="1070" 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="" line="1086" package="Query\Query_Builder">
<name>count_all_results</name>
<full_name>\Query_Builder::count_all_results()</full_name>
<docblock line="1086">
<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="1086" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="1086" 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="" line="1111" package="Query\Query_Builder">
<name>insert</name>
<full_name>\Query_Builder::insert()</full_name>
<docblock line="1111">
<description>Creates an insert clause, and executes it</description>
<long-description></long-description>
<tag name="param" line="1111" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1111" description="" type="mixed" variable="$data">
<type>mixed</type>
</tag>
<tag name="return" line="1111" description="" type="\PDOStatement">
<type link="PDOStatement.html">\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="" line="1131" package="Query\Query_Builder">
<name>insert_batch</name>
<full_name>\Query_Builder::insert_batch()</full_name>
<docblock line="1131">
<description>Creates and executes a batch insertion query</description>
<long-description></long-description>
<tag name="param" line="1131" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1131" description="" type="array" variable="$data">
<type>array</type>
</tag>
<tag name="return" line="1131" description="" type="\PDOStatement">
<type link="PDOStatement.html">\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="" line="1153" package="Query\Query_Builder">
<name>update</name>
<full_name>\Query_Builder::update()</full_name>
<docblock line="1153">
<description>Creates an update clause, and executes it</description>
<long-description></long-description>
<tag name="param" line="1153" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1153" description="" type="mixed" variable="$data">
<type>mixed</type>
</tag>
<tag name="return" line="1153" description="" type="\PDOStatement">
<type link="PDOStatement.html">\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="" line="1173" package="Query\Query_Builder">
<name>delete</name>
<full_name>\Query_Builder::delete()</full_name>
<docblock line="1173">
<description>Deletes data from a table</description>
<long-description></long-description>
<tag name="param" line="1173" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1173" description="" type="mixed" variable="$where">
<type>mixed</type>
</tag>
<tag name="return" line="1173" description="" type="\PDOStatement">
<type link="PDOStatement.html">\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="" line="1196" package="Query\Query_Builder">
<name>_get_compile</name>
<full_name>\Query_Builder::_get_compile()</full_name>
<docblock line="1196">
<description>Helper function for returning sql strings</description>
<long-description></long-description>
<tag name="param" line="1196" description="" type="string" variable="$type">
<type>string</type>
</tag>
<tag name="param" line="1196" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1196" description="" type="bool" variable="$reset">
<type>bool</type>
</tag>
<tag name="resturn" line="1196" 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="" line="1218" package="Query\Query_Builder">
<name>get_compiled_select</name>
<full_name>\Query_Builder::get_compiled_select()</full_name>
<docblock line="1218">
<description>Returns the generated 'select' 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="" line="1238" package="Query\Query_Builder">
<name>get_compiled_insert</name>
<full_name>\Query_Builder::get_compiled_insert()</full_name>
<docblock line="1238">
<description>Returns the generated 'insert' sql query</description>
<long-description></long-description>
<tag name="param" line="1238" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1238" description="" type="bool" variable="$reset">
<type>bool</type>
</tag>
<tag name="return" line="1238" 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="" line="1252" package="Query\Query_Builder">
<name>get_compiled_update</name>
<full_name>\Query_Builder::get_compiled_update()</full_name>
<docblock line="1252">
<description>Returns the generated 'update' sql query</description>
<long-description></long-description>
<tag name="param" line="1252" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1252" description="" type="bool" variable="$reset">
<type>bool</type>
</tag>
<tag name="return" line="1252" 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="" line="1266" package="Query\Query_Builder">
<name>get_compiled_delete</name>
<full_name>\Query_Builder::get_compiled_delete()</full_name>
<docblock line="1266">
<description>Returns the generated 'delete' sql query</description>
<long-description></long-description>
<tag name="param" line="1266" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1266" description="" type="bool" variable="$reset">
<type>bool</type>
</tag>
<tag name="return" line="1266" 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="" line="1281" package="Query\Query_Builder">
<name>reset_query</name>
<full_name>\Query_Builder::reset_query()</full_name>
<docblock line="1281">
<description>Clear out the class variables, so the next query can be run</description>
<long-description></long-description>
<tag name="return" line="1281" description="" type="void">
<type>void</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="protected" namespace="" line="1328" package="Query\Query_Builder">
<name>_run</name>
<full_name>\Query_Builder::_run()</full_name>
<docblock line="1328">
<description>Executes the compiled query</description>
<long-description></long-description>
<tag name="param" line="1328" description="" type="string" variable="$type">
<type>string</type>
</tag>
<tag name="param" line="1328" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1328" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="param" line="1328" description="" type="array|null" variable="$vals">
<type>array</type>
<type>null</type>
</tag>
<tag name="return" line="1328" description="" type="\PDOStatement">
<type link="PDOStatement.html">\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="" line="1394" package="Query\Query_Builder">
<name>__call</name>
<full_name>\Query_Builder::__call()</full_name>
<docblock line="1394">
<description>Calls a function further down the inheritence chain</description>
<long-description></long-description>
<tag name="param" line="1394" description="" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="param" line="1394" description="" type="array" variable="$params">
<type>array</type>
</tag>
<tag name="return" line="1394" description="" type="mixed">
<type>mixed</type>
</tag>
<tag name="throws" line="1394" description="" type="\BadMethodCallException">
<type link="BadMethodCallException.html">\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="" line="1413" package="Query\Query_Builder">
<name>_compile_type</name>
<full_name>\Query_Builder::_compile_type()</full_name>
<docblock line="1413">
<description>Sub-method for generating sql strings</description>
<long-description></long-description>
<tag name="param" line="1413" description="" type="string" variable="$type">
<type>string</type>
</tag>
<tag name="param" line="1413" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="1413" description="" type="\$string">
<type link="$string.html">\$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="" line="1455" package="Query\Query_Builder">
<name>_compile</name>
<full_name>\Query_Builder::_compile()</full_name>
<docblock line="1455">
<description>String together the sql statements for sending to the db</description>
<long-description></long-description>
<tag name="param" line="1455" description="" type="string" variable="$type">
<type>string</type>
</tag>
<tag name="param" line="1455" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="1455" description="" type="\$string">
<type link="$string.html">\$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="d105976e78f21c7edb34d3da68204a01" 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="" line="24" package="Query\Drivers">
<extends>\Abstract_Driver</extends>
<name>Firebird</name>
<full_name>\Firebird</full_name>
<docblock line="24">
<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="24" description="Query"/>
<tag name="subpackage" line="24" description="Drivers"/>
</docblock>
<property static="false" visibility="protected" line="31" namespace="" package="Query\Drivers">
<name>$statement</name>
<default>NULL</default>
<docblock line="31">
<description>Reference to the last query executed</description>
<long-description></long-description>
<tag name="var" line="31" description="" type="object" variable="">
<type>object</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="39" namespace="" package="Query\Drivers">
<name>$statement_link</name>
<default>NULL</default>
<docblock line="39">
<description>Reference to the resource returned by
the last query executed</description>
<long-description></long-description>
<tag name="var" line="39" description="" type="resource" variable="">
<type>resource</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="46" namespace="" package="Query\Drivers">
<name>$trans</name>
<default>NULL</default>
<docblock line="46">
<description>Reference to the current transaction</description>
<long-description></long-description>
<tag name="var" line="46" description="" type="resource" variable="">
<type>resource</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="53" namespace="" package="Query\Drivers">
<name>$conn</name>
<default>NULL</default>
<docblock line="53">
<description>Reference to the connection resource</description>
<long-description></long-description>
<tag name="var" line="53" description="" type="resource" variable="">
<type>resource</type>
</tag>
</docblock>
</property>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="63" package="Query\Drivers">
<name>__construct</name>
<full_name>\Firebird::__construct()</full_name>
<docblock line="63">
<description>Open the link to the database</description>
<long-description></long-description>
<tag name="param" line="63" description="" type="string" variable="$dbpath">
<type>string</type>
</tag>
<tag name="param" line="63" description="" type="string" variable="$user">
<type>string</type>
</tag>
<tag name="param" line="63" description="" type="string" variable="$pass">
<type>string</type>
</tag>
<tag name="param" line="63" 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="" line="98" package="Query\Drivers">
<name>truncate</name>
<full_name>\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="" line="113" package="Query\Drivers">
<name>exec</name>
<full_name>\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="" line="126" package="Query\Drivers">
<name>getAttribute</name>
<full_name>\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="" line="138" package="Query\Drivers">
<name>inTransaction</name>
<full_name>\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="" line="151" package="Query\Drivers">
<name>lastInsertId</name>
<full_name>\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="" line="165" package="Query\Drivers">
<name>query</name>
<full_name>\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="\Firebird_Result">
<type link="Firebird_Result.html">\Firebird_Result</type>
</tag>
<tag name="throws" line="165" description="" type="\PDOException">
<type link="PDOException.html">\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="" line="193" package="Query\Drivers">
<name>prepare</name>
<full_name>\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="\Firebird_Result">
<type link="Firebird_Result.html">\Firebird_Result</type>
</tag>
<tag name="throws" line="193" description="" type="\PDOException">
<type link="PDOException.html">\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="" line="212" package="Query\Drivers">
<name>beginTransaction</name>
<full_name>\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="" line="224" package="Query\Drivers">
<name>commit</name>
<full_name>\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="" line="238" package="Query\Drivers">
<name>rollBack</name>
<full_name>\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="" line="253" package="Query\Drivers">
<name>setAttribute</name>
<full_name>\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="" line="267" package="Query\Drivers">
<name>prepare_execute</name>
<full_name>\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="\Firebird_Result">
<type link="Firebird_Result.html">\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="" line="286" package="Query\Drivers">
<name>quote</name>
<full_name>\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="" line="303" package="Query\Drivers">
<name>errorInfo</name>
<full_name>\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="" line="318" package="Query\Drivers">
<name>errorCode</name>
<full_name>\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="" line="332" package="Query\Drivers">
<name>prepare_query</name>
<full_name>\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="" line="348" package="Query\Drivers">
<name>insert_batch</name>
<full_name>\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>eJzVWW1vGzcS/rz6FRPBiFaBLPWKfjjYVRO/KIAPTpOTVBRFcVhwdylp630LybUj9Prfb4bkvslaW7mL0muAWBJ3OJw3PvOQ+/3rfJP3Jq9e9eAV/LPgYotf6PtbwbkZgMsiikMuYALXTDGfSQ4XvlSCBSrKUrhlWy7srDc5C+7YmjtOqQvesEJtMuE4yyjJ1GYL/xjDz0wInuqnQZZvRbTeKOeq/AZuMIRvv/nbt3BKH99puThK78BxNkrl8mwyWUdqU/jjIEsm7D5i6ju0ZFKvGUcBTyU38iieb6JYqkKseZbipHFxNwmykE9Cn4WnVhgnTnq9yQROv9i/XhnZt5HgfiTCOoJBzKS0Uftw/f50VUpEMh0okCgW8xHIDNQmkjgKDB4Ey3NMRLbCQQ4rkvcgL3z0AFZFqvMhxzu5gDossvDLwWsR3XMhtdPaltpG/knxNJRVkj0jC7/3eg7546CqOV9xTGHAQWXaGFSh4KOuF/6JB4XiIQlq4Tf3DI32f+OBot+TnpOLTOEvHsIJeqp4wlMFU/jxp9vb86dWEVxmhQjoC2Yzxfn+VkseZEI5+wkjPF1nB1gSFFTCCjBCqTQ74dDF9JSD1sjSlJtN1tR2yBo0dc8S73OemliRm3aZ0NZkrTtngiVYgyJK13ASYtGozb4nhcSdv2c8p9pujON2Z1s4yXJdoKW17boFz0OjUUMRKNeuOTJLTAeLXxbXlxeDkVE9HSSYai7u+BaH2srRaT3gDoc95/ee40QrcCMpOSq1Ir/ifjs7u1gu596H2Xxxs1jOflz+awgvX8LTIjCdwnL+0ww1a9XOCe3N0x9ssM1+zG3Wdnywpo9gUKjV6d/R7m+G56jjD/zPYwp+t8rP1Yh/EMaWG5E9AEtxMwRcu0UJT9gdN5CSMBVsACEZt3YeZgaRuLQhgxeIOV5ZYG7DrOEQ55PqlD8QdM1K9a6xlguRyLU7HEH1m7CWBqgch+fWvtuMhVR/JRhyCWgKB58HDP3TRhrJ0OBPmKFImikIWByXG8QUTCaMJCLj9aWHRo3gYROheyFfRSlOM+uoh8zIGcTDLRQRzEpYZUIrNNEILTa27QT5MbawjWkyGqZYtVe3F4uF5437Hgr0KQM2WCQ/1VEy0u4j16FQ0TM6SaKpVM9oadUPKPOU+C/cvirgmCW52mILKrECdH/qQozq4Z5tjvlKA0Rb10jZXYp2V/0nxhZF7a6UxDQnCUtDCoKJ6eB6djtbzuDt/P076A/GRtV40B80w99oLHZINweXlBw9XqYB0fYjk2tb0A/bvCAtEt90c7ZaGdzGbSW7gop6zLCdHqWqI8TU/YyXJrh2gmkGR3X7Jslj4yftKMwb4lXkR3GExfOAlI3wYtc/9ANOmEIvfYxYy8Uk+mR6+B4n11xdlJPcev5Xd3luVnrYcI0dTW5QZ50YXKpLeg9bsLb6WRZ3+Bqly3qi23ZR43RaxHGJ0XqNY9e38VrWvOuexQUvmanMeRCtIizoNU+5YBqf91d1ypLDc04r3SBVF+omdPVUy3HaITF9B5f2IiuGvXEEzR525PD8bJn6I/DLsL0ppC62++7ZDl3bvYRHb85lESvzTDdi2erCHaGroY/wc6ADZls9J2w3eNHZ2vvmKJhgkWcEYB8LNEeW8KaVv+jrKNc9fheHS25d0rFmuRKlcl7bzFlbG89HYOHMcc72CVFOrcx5i/5QNSIBQTBi1FJ4HSXnBMc9G+0ptLkLjKF/Wx0nzvr4265EJWjWPrfh63ATueLbi9vFrDOkjfWfpEp72hnponq4rOthvxlGg62gXYmjU4Yipu6NTkMuOFZ3J1/Q8Xz6wPCl9oG1xDVrjqo1pu1TQ1ftWo5fKmlVn9b4ZP2lrQL8X4rnM6j2X7V+FooJ1aKczzRPztJ/UyPsyLzP10/1UbcFOFWq9a+d48+Lqe068FqfB+HsaxCNK2TB0WcFpCMQgVZUun9COF6fNPWjXSbh7ITGelsVBqo4Nt/I4tjHc8F/z6EEarhEDXv9Flb9/6HnC045b1wF7VDlbhJtnmg+BSeanx0aK7mfW4+smvbG0UB15CB8MICrT0+8PFpB1Tae5E+tjsLE+tl20t01PLu2Jksjo60sJ3PxWB01qxbR5CSUS82P64OBuY5r30fowxNncgvUQLF1BAE3NwT7u8VL23taYK1HTn+oLNa2HjlN7ww9RJbL6+ZPx+5MdfZ+/HxUyPqrp7Z5u2LNlE6Cm+nEKHMxVirAjOi7vA8X84t33mI5r64FXX1uSriIAj1tWF3rlSHEwepCzY71B/0xDnuY3ZgF3MXfIxykv1rHGAf+nCBrlnGTrjKY0MCirJHGk0dwqTdF1yVCOasCTKIWTaZsqIYGSWQhjzh0sxoNuaIzGE3CD5T4k4pR+3WFVnx+NK60w3uOms1gHNOlywjxj5VoFNqXHfpiBbd3Qek2d5lm19vNcjg66h9tfKSG9wwo1kfLcufJ+lbvl6yAgNErLZ+MNxZXACaRlaG9vDQYtZI3Zqp+x1VeCtYvKb7i3c6V4FQ3dMSlqPr6zB7pC4hnrz53Qkv2Hw5mZg1PL2gvSkdGx845RR80zPtBuhm/p+iyPEdlupHYNzyHRPEPevU5wxRlq0reMzfh43yT/wcRK5LY</source>
</file>
<file path="drivers/mysql/mysql_util.php" generated-path="drivers.mysql.mysql_util.html" hash="62224db014e75896a16d3cefe97c7ea2" 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="" line="28" package="Query\Drivers">
<extends>\DB_Util</extends>
<name>MySQL_Util</name>
<full_name>\MySQL_Util</full_name>
<docblock line="28">
<description>MySQL-specific backup, import and creation methods</description>
<long-description></long-description>
<tag name="package" line="28" description="Query"/>
<tag name="subpackage" line="28" description="Drivers"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="40" package="Query\Drivers">
<name>create_table</name>
<full_name>\MySQL_Util::create_table()</full_name>
<docblock line="40">
<description>Convienience public function for creating a new MySQL table</description>
<long-description></long-description>
<tag name="param" line="40" description="" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="param" line="40" description="" type="array" variable="$columns">
<type>array</type>
</tag>
<tag name="param" line="40" description="" type="array" variable="$constraints">
<type>array</type>
</tag>
<tag name="param" line="40" description="" type="array" variable="$indexes">
<type>array</type>
</tag>
<tag name="return" line="40" 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="" line="106" package="Query\Drivers">
<name>delete_table</name>
<full_name>\MySQL_Util::delete_table()</full_name>
<docblock line="106">
<description>Convience public function for droping a table</description>
<long-description></long-description>
<tag name="param" line="106" description="" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="return" line="106" 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="" line="118" package="Query\Drivers">
<name>backup_structure</name>
<full_name>\MySQL_Util::backup_structure()</full_name>
<docblock line="118">
<description>Create an SQL backup file for the current database's structure</description>
<long-description></long-description>
<tag name="return" line="118" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="154" package="Query\Drivers">
<name>backup_data</name>
<full_name>\MySQL_Util::backup_data()</full_name>
<docblock line="154">
<description>Create an SQL backup file for the current database's data</description>
<long-description></long-description>
<tag name="param" line="154" description="" type="array" variable="$exclude">
<type>array</type>
</tag>
<tag name="return" line="154" 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="28">
<name>get_dbs</name>
<docblock>
<description/>
<long-description/>
<tag name="magic" line="28"/>
<tag name="return" line="28" type="">
<type/>
</tag>
<tag name="method" line="28" description="" method_name="get_dbs"/>
</docblock>
</method>
<method final="false" static="false" visibility="public" line="28">
<name>driver_query</name>
<docblock>
<description/>
<long-description/>
<tag name="magic" line="28"/>
<tag name="return" line="28" type="">
<type/>
</tag>
<tag name="method" line="28" description="" method_name="driver_query"/>
</docblock>
</method>
<method final="false" static="false" visibility="public" line="28">
<name>get_system_tables</name>
<docblock>
<description/>
<long-description/>
<tag name="magic" line="28"/>
<tag name="return" line="28" type="">
<type/>
</tag>
<tag name="method" line="28" description="" method_name="get_system_tables"/>
</docblock>
</method>
<method final="false" static="false" visibility="public" line="28">
<name>get_tables</name>
<docblock>
<description/>
<long-description/>
<tag name="magic" line="28"/>
<tag name="return" line="28" type="">
<type/>
</tag>
<tag name="method" line="28" description="" method_name="get_tables"/>
</docblock>
</method>
<method final="false" static="false" visibility="public" line="28">
<name>query</name>
<docblock>
<description/>
<long-description/>
<tag name="magic" line="28"/>
<tag name="return" line="28" type="">
<type/>
</tag>
<tag name="method" line="28" description="" method_name="query"/>
</docblock>
</method>
<method final="false" static="false" visibility="public" line="28">
<name>quote</name>
<docblock>
<description/>
<long-description/>
<tag name="magic" line="28"/>
<tag name="return" line="28" type="">
<type/>
</tag>
<tag name="method" line="28" description="" method_name="quote"/>
</docblock>
</method>
</class>
<source>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</source>
</file>
<file path="classes/abstract_driver.php" generated-path="classes.abstract_driver.html" hash="b1149916494958dd764915b18540bce5" 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="" line="24" package="Query\Drivers">
<extends>\PDO</extends>
<implements>\Driver_Interface</implements>
<name>Abstract_Driver</name>
<full_name>\Abstract_Driver</full_name>
<docblock line="24">
<description>Base Database 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="30" namespace="" package="Query\Drivers">
<name>$statement</name>
<default></default>
<docblock line="30">
<description>Reference to the last executed query</description>
<long-description></long-description>
<tag name="var" line="30" description="" type="\PDOStatement" variable="">
<type link="PDOStatement.html">\PDOStatement</type>
</tag>
</docblock>
</property>
<property static="false" visibility="protected" line="36" namespace="" package="Query\Drivers">
<name>$escape_char</name>
<default>'"'</default>
<docblock line="36">
<description>Character to escape indentifiers</description>
<long-description></long-description>
<tag name="var" line="36" description="" type="string" variable="">
<type>string</type>
</tag>
</docblock>
</property>
<property static="false" visibility="public" line="42" namespace="" package="Query\Drivers">
<name>$sql</name>
<default></default>
<docblock line="42">
<description>Reference to sql class</description>
<long-description></long-description>
<tag name="var" line="42" description="" type="\SQL_Interface" variable="">
<type link="SQL_Interface.html">\SQL_Interface</type>
</tag>
</docblock>
</property>
<property static="false" visibility="public" line="48" namespace="" package="Query\Drivers">
<name>$util</name>
<default></default>
<docblock line="48">
<description>Reference to util class</description>
<long-description></long-description>
<tag name="var" line="48" description="" type="\DB_Util" variable="">
<type link="DB_Util.html">\DB_Util</type>
</tag>
</docblock>
</property>
<property static="false" visibility="public" line="54" namespace="" package="Query\Drivers">
<name>$last_query</name>
<default></default>
<docblock line="54">
<description>Last query executed</description>
<long-description></long-description>
<tag name="var" line="54" description="" type="string" variable="">
<type>string</type>
</tag>
</docblock>
</property>
<property static="false" visibility="public" line="60" namespace="" package="Query\Drivers">
<name>$table_prefix</name>
<default>''</default>
<docblock line="60">
<description>Prefix to apply to table names</description>
<long-description></long-description>
<tag name="var" line="60" description="" type="string" variable="">
<type>string</type>
</tag>
</docblock>
</property>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="70" package="Query\Drivers">
<name>__construct</name>
<full_name>\Abstract_Driver::__construct()</full_name>
<docblock line="70">
<description>PDO constructor wrapper</description>
<long-description></long-description>
<tag name="param" line="70" description="" type="string" variable="$dsn">
<type>string</type>
</tag>
<tag name="param" line="70" description="" type="string" variable="$username">
<type>string</type>
</tag>
<tag name="param" line="70" description="" type="string" variable="$password">
<type>string</type>
</tag>
<tag name="param" line="70" 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="" line="106" package="Query\Drivers">
<name>prepare_query</name>
<full_name>\Abstract_Driver::prepare_query()</full_name>
<docblock line="106">
<description>Simplifies prepared statements for database queries</description>
<long-description></long-description>
<tag name="param" line="106" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="param" line="106" description="" type="array" variable="$data">
<type>array</type>
</tag>
<tag name="return" line="106" description="PDOStatement / FALSE" type="\PDOStatement">
<type link="PDOStatement.html">\PDOStatement</type>
</tag>
<tag name="throws" line="106" description="" type="\InvalidArgumentException">
<type link="InvalidArgumentException.html">\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="" line="142" package="Query\Drivers">
<name>prepare_execute</name>
<full_name>\Abstract_Driver::prepare_execute()</full_name>
<docblock line="142">
<description>Create and execute a prepared statement with the provided parameters</description>
<long-description></long-description>
<tag name="param" line="142" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="param" line="142" description="" type="array" variable="$params">
<type>array</type>
</tag>
<tag name="return" line="142" description="" type="\PDOStatement">
<type link="PDOStatement.html">\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="" line="157" package="Query\Drivers">
<name>affected_rows</name>
<full_name>\Abstract_Driver::affected_rows()</full_name>
<docblock line="157">
<description>Returns number of rows affected by an INSERT, UPDATE, DELETE type query</description>
<long-description></long-description>
<tag name="return" line="157" description="" type="int">
<type>int</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="171" package="Query\Drivers">
<name>quote_table</name>
<full_name>\Abstract_Driver::quote_table()</full_name>
<docblock line="171">
<description>Quote database table name, and set prefix</description>
<long-description></long-description>
<tag name="param" line="171" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="171" 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="" line="205" package="Query\Drivers">
<name>_prefix</name>
<full_name>\Abstract_Driver::_prefix()</full_name>
<docblock line="205">
<description>Sets the table prefix on the passed string</description>
<long-description></long-description>
<tag name="param" line="205" description="" type="string" variable="$str">
<type>string</type>
</tag>
<tag name="return" line="205" 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="" line="224" package="Query\Drivers">
<name>quote_ident</name>
<full_name>\Abstract_Driver::quote_ident()</full_name>
<docblock line="224">
<description>Surrounds the string with the databases identifier escape characters</description>
<long-description></long-description>
<tag name="param" line="224" description="" type="mixed" variable="$ident">
<type>mixed</type>
</tag>
<tag name="return" line="224" 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="" line="271" package="Query\Drivers">
<name>_quote</name>
<full_name>\Abstract_Driver::_quote()</full_name>
<docblock line="271">
<description>Helper method for quote_ident</description>
<long-description></long-description>
<tag name="param" line="271" description="" type="mixed" variable="$str">
<type>mixed</type>
</tag>
<tag name="return" line="271" 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="" line="292" package="Query\Drivers">
<name>get_schemas</name>
<full_name>\Abstract_Driver::get_schemas()</full_name>
<docblock line="292">
<description>Return schemas for databases that list them</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="" line="304" package="Query\Drivers">
<name>get_tables</name>
<full_name>\Abstract_Driver::get_tables()</full_name>
<docblock line="304">
<description>Return list of tables for the current database</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="" line="316" package="Query\Drivers">
<name>get_dbs</name>
<full_name>\Abstract_Driver::get_dbs()</full_name>
<docblock line="316">
<description>Return list of dbs for the current connection, if possible</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="" line="328" package="Query\Drivers">
<name>get_views</name>
<full_name>\Abstract_Driver::get_views()</full_name>
<docblock line="328">
<description>Return list of views for the current database</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="" line="340" package="Query\Drivers">
<name>get_sequences</name>
<full_name>\Abstract_Driver::get_sequences()</full_name>
<docblock line="340">
<description>Return list of sequences for the current database, if they exist</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="" line="352" package="Query\Drivers">
<name>get_functions</name>
<full_name>\Abstract_Driver::get_functions()</full_name>
<docblock line="352">
<description>Return list of function 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="" line="364" package="Query\Drivers">
<name>get_procedures</name>
<full_name>\Abstract_Driver::get_procedures()</full_name>
<docblock line="364">
<description>Return list of stored procedures 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="" line="376" package="Query\Drivers">
<name>get_triggers</name>
<full_name>\Abstract_Driver::get_triggers()</full_name>
<docblock line="376">
<description>Return list of triggers for the current database</description>
<long-description></long-description>
<tag name="return" line="376" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="389" package="Query\Drivers">
<name>get_system_tables</name>
<full_name>\Abstract_Driver::get_system_tables()</full_name>
<docblock line="389">
<description>Retreives an array of non-user-created tables for
the connection/database</description>
<long-description></long-description>
<tag name="return" line="389" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="402" package="Query\Drivers">
<name>get_columns</name>
<full_name>\Abstract_Driver::get_columns()</full_name>
<docblock line="402">
<description>Retrieve column information for the current database table</description>
<long-description></long-description>
<tag name="param" line="402" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="402" 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="" line="414" package="Query\Drivers">
<name>get_types</name>
<full_name>\Abstract_Driver::get_types()</full_name>
<docblock line="414">
<description>Retrieve list of data types for the database</description>
<long-description></long-description>
<tag name="return" line="414" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="428" package="Query\Drivers">
<name>driver_query</name>
<full_name>\Abstract_Driver::driver_query()</full_name>
<docblock line="428">
<description>Method to simplify retreiving db results for meta-data queries</description>
<long-description></long-description>
<tag name="param" line="428" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="param" line="428" description="" type="bool" variable="$filtered_index">
<type>bool</type>
</tag>
<tag name="return" line="428" description="" type="mixed">
<type>mixed</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>$filtered_index</name>
<default>TRUE</default>
<type>bool</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="458" package="Query\Drivers">
<name>num_rows</name>
<full_name>\Abstract_Driver::num_rows()</full_name>
<docblock line="458">
<description>Return the number of rows returned for a SELECT query</description>
<long-description></long-description>
<tag name="see" line="458" description="" link="\http://us3.php.net/manual/en/pdostatement.rowcount.php#87110"/>
<tag name="return" line="458" description="" type="int">
<type>int</type>
</tag>
</docblock>
</method>
<method final="false" abstract="true" static="false" visibility="public" namespace="" line="482" package="Query\Drivers">
<name>truncate</name>
<full_name>\Abstract_Driver::truncate()</full_name>
<docblock line="482">
<description>Empty the passed table</description>
<long-description></long-description>
<tag name="param" line="482" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="482" 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="" line="493" package="Query\Drivers">
<name>insert_batch</name>
<full_name>\Abstract_Driver::insert_batch()</full_name>
<docblock line="493">
<description>Create sql for batch insert</description>
<long-description></long-description>
<tag name="param" line="493" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="493" description="" type="array" variable="$data">
<type>array</type>
</tag>
<tag name="return" line="493" 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="classes/query_builder_interface.php" generated-path="classes.query_builder_interface.html" hash="36753d0b72379049aa4b49d578782c0d" 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="" line="22" package="Query\Query_Builder">
<name>Query_Builder_Interface</name>
<full_name>\Query_Builder_Interface</full_name>
<docblock line="22">
<description>Interface defining the Query Builder class</description>
<long-description></long-description>
<tag name="package" line="22" description="Query"/>
<tag name="subpackage" line="22" description="Query_Builder"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="34" package="Query\Query_Builder">
<name>select</name>
<full_name>\Query_Builder_Interface::select()</full_name>
<docblock line="34">
<description>Specifies rows to select in a query</description>
<long-description></long-description>
<tag name="param" line="34" description="" type="string" variable="$fields">
<type>string</type>
</tag>
<tag name="return" line="34" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="45" package="Query\Query_Builder">
<name>select_max</name>
<full_name>\Query_Builder_Interface::select_max()</full_name>
<docblock line="45">
<description>Selects the maximum value of a field from a query</description>
<long-description></long-description>
<tag name="param" line="45" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="45" description="" type="string" variable="$as">
<type>string</type>
</tag>
<tag name="return" line="45" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="56" package="Query\Query_Builder">
<name>select_min</name>
<full_name>\Query_Builder_Interface::select_min()</full_name>
<docblock line="56">
<description>Selects the minimum value of a field from a query</description>
<long-description></long-description>
<tag name="param" line="56" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="56" description="" type="string" variable="$as">
<type>string</type>
</tag>
<tag name="return" line="56" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="67" package="Query\Query_Builder">
<name>select_avg</name>
<full_name>\Query_Builder_Interface::select_avg()</full_name>
<docblock line="67">
<description>Selects the average value of a field from a query</description>
<long-description></long-description>
<tag name="param" line="67" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="67" description="" type="string" variable="$as">
<type>string</type>
</tag>
<tag name="return" line="67" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="78" package="Query\Query_Builder">
<name>select_sum</name>
<full_name>\Query_Builder_Interface::select_sum()</full_name>
<docblock line="78">
<description>Selects the sum of a field from a query</description>
<long-description></long-description>
<tag name="param" line="78" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="78" description="" type="string" variable="$as">
<type>string</type>
</tag>
<tag name="return" line="78" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="87" package="Query\Query_Builder">
<name>distinct</name>
<full_name>\Query_Builder_Interface::distinct()</full_name>
<docblock line="87">
<description>Adds the 'distinct' keyword to a query</description>
<long-description></long-description>
<tag name="return" line="87" description="" type="\Query_Builder">
<type link="Query_Builder.html">\Query_Builder</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="96" package="Query\Query_Builder">
<name>explain</name>
<full_name>\Query_Builder_Interface::explain()</full_name>
<docblock line="96">
<description>Shows the query plan for the query</description>
<long-description></long-description>
<tag name="return" line="96" description="" type="\Query_Builder">
<type link="Query_Builder.html">\Query_Builder</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="106" package="Query\Query_Builder">
<name>from</name>
<full_name>\Query_Builder_Interface::from()</full_name>
<docblock line="106">
<description>Specify the database table to select from</description>
<long-description></long-description>
<tag name="param" line="106" description="" type="string" variable="$tblname">
<type>string</type>
</tag>
<tag name="return" line="106" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="120" package="Query\Query_Builder">
<name>like</name>
<full_name>\Query_Builder_Interface::like()</full_name>
<docblock line="120">
<description>Creates a Like clause in the sql statement</description>
<long-description></long-description>
<tag name="param" line="120" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="120" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="120" description="" type="string" variable="$pos">
<type>string</type>
</tag>
<tag name="return" line="120" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="132" package="Query\Query_Builder">
<name>or_like</name>
<full_name>\Query_Builder_Interface::or_like()</full_name>
<docblock line="132">
<description>Generates an OR Like clause</description>
<long-description></long-description>
<tag name="param" line="132" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="132" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="132" description="" type="string" variable="$pos">
<type>string</type>
</tag>
<tag name="return" line="132" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="144" package="Query\Query_Builder">
<name>not_like</name>
<full_name>\Query_Builder_Interface::not_like()</full_name>
<docblock line="144">
<description>Generates a NOT LIKE clause</description>
<long-description></long-description>
<tag name="param" line="144" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="144" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="144" description="" type="string" variable="$pos">
<type>string</type>
</tag>
<tag name="return" line="144" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="156" package="Query\Query_Builder">
<name>or_not_like</name>
<full_name>\Query_Builder_Interface::or_not_like()</full_name>
<docblock line="156">
<description>Generates a OR NOT LIKE clause</description>
<long-description></long-description>
<tag name="param" line="156" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="156" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="156" description="" type="string" variable="$pos">
<type>string</type>
</tag>
<tag name="return" line="156" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="169" package="Query\Query_Builder">
<name>having</name>
<full_name>\Query_Builder_Interface::having()</full_name>
<docblock line="169">
<description>Generates a 'Having' clause</description>
<long-description></long-description>
<tag name="param" line="169" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="169" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="169" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="180" package="Query\Query_Builder">
<name>or_having</name>
<full_name>\Query_Builder_Interface::or_having()</full_name>
<docblock line="180">
<description>Generates a 'Having' clause prefixed with 'OR'</description>
<long-description></long-description>
<tag name="param" line="180" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="180" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="180" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="196" package="Query\Query_Builder">
<name>where</name>
<full_name>\Query_Builder_Interface::where()</full_name>
<docblock line="196">
<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="196" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="196" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="196" description="" type="bool" variable="$escape">
<type>bool</type>
</tag>
<tag name="return" line="196" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="207" package="Query\Query_Builder">
<name>or_where</name>
<full_name>\Query_Builder_Interface::or_where()</full_name>
<docblock line="207">
<description>Where clause prefixed with "OR"</description>
<long-description></long-description>
<tag name="param" line="207" description="" type="string" variable="$key">
<type>string</type>
</tag>
<tag name="param" line="207" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="207" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="218" package="Query\Query_Builder">
<name>where_in</name>
<full_name>\Query_Builder_Interface::where_in()</full_name>
<docblock line="218">
<description>Where clause with 'IN' statement</description>
<long-description></long-description>
<tag name="param" line="218" description="" type="mixed" variable="$field">
<type>mixed</type>
</tag>
<tag name="param" line="218" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="218" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="229" package="Query\Query_Builder">
<name>or_where_in</name>
<full_name>\Query_Builder_Interface::or_where_in()</full_name>
<docblock line="229">
<description>Where in statement prefixed with "or"</description>
<long-description></long-description>
<tag name="param" line="229" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="229" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="229" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="240" package="Query\Query_Builder">
<name>where_not_in</name>
<full_name>\Query_Builder_Interface::where_not_in()</full_name>
<docblock line="240">
<description>WHERE NOT IN (FOO) clause</description>
<long-description></long-description>
<tag name="param" line="240" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="240" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="240" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="251" package="Query\Query_Builder">
<name>or_where_not_in</name>
<full_name>\Query_Builder_Interface::or_where_not_in()</full_name>
<docblock line="251">
<description>OR WHERE NOT IN (FOO) clause</description>
<long-description></long-description>
<tag name="param" line="251" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="251" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="251" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="264" package="Query\Query_Builder">
<name>set</name>
<full_name>\Query_Builder_Interface::set()</full_name>
<docblock line="264">
<description>Sets values for inserts / updates / deletes</description>
<long-description></long-description>
<tag name="param" line="264" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="264" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="264" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="276" package="Query\Query_Builder">
<name>join</name>
<full_name>\Query_Builder_Interface::join()</full_name>
<docblock line="276">
<description>Creates a join phrase in a compiled query</description>
<long-description></long-description>
<tag name="param" line="276" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="276" description="" type="string" variable="$condition">
<type>string</type>
</tag>
<tag name="param" line="276" description="" type="string" variable="$type">
<type>string</type>
</tag>
<tag name="return" line="276" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="286" package="Query\Query_Builder">
<name>group_by</name>
<full_name>\Query_Builder_Interface::group_by()</full_name>
<docblock line="286">
<description>Group the results by the selected field(s)</description>
<long-description></long-description>
<tag name="param" line="286" description="" type="mixed" variable="$field">
<type>mixed</type>
</tag>
<tag name="return" line="286" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="297" package="Query\Query_Builder">
<name>order_by</name>
<full_name>\Query_Builder_Interface::order_by()</full_name>
<docblock line="297">
<description>Order the results by the selected field(s)</description>
<long-description></long-description>
<tag name="param" line="297" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="297" description="" type="string" variable="$type">
<type>string</type>
</tag>
<tag name="return" line="297" description="" type="\Query_Builder">
<type link="Query_Builder.html">\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="" line="308" package="Query\Query_Builder">
<name>limit</name>
<full_name>\Query_Builder_Interface::limit()</full_name>
<docblock line="308">
<description>Set a limit on the current sql statement</description>
<long-description></long-description>
<tag name="param" line="308" description="" type="int" variable="$limit">
<type>int</type>
</tag>
<tag name="param" line="308" description="" type="int" variable="$offset">
<type>int</type>
</tag>
<tag name="return" line="308" 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="" line="319" package="Query\Query_Builder">
<name>group_start</name>
<full_name>\Query_Builder_Interface::group_start()</full_name>
<docblock line="319">
<description>Adds a paren to the current query for query grouping</description>
<long-description></long-description>
<tag name="return" line="319" description="" type="\Query_Builder">
<type link="Query_Builder.html">\Query_Builder</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="329" package="Query\Query_Builder">
<name>or_group_start</name>
<full_name>\Query_Builder_Interface::or_group_start()</full_name>
<docblock line="329">
<description>Adds a paren to the current query for query grouping,
prefixed with 'OR'</description>
<long-description></long-description>
<tag name="return" line="329" description="" type="\Query_Builder">
<type link="Query_Builder.html">\Query_Builder</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="339" package="Query\Query_Builder">
<name>or_not_group_start</name>
<full_name>\Query_Builder_Interface::or_not_group_start()</full_name>
<docblock line="339">
<description>Adds a paren to the current query for query grouping,
prefixed with 'OR NOT'</description>
<long-description></long-description>
<tag name="return" line="339" description="" type="\Query_Builder">
<type link="Query_Builder.html">\Query_Builder</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="348" package="Query\Query_Builder">
<name>group_end</name>
<full_name>\Query_Builder_Interface::group_end()</full_name>
<docblock line="348">
<description>Ends a query group</description>
<long-description></long-description>
<tag name="return" line="348" description="" type="\Query_Builder">
<type link="Query_Builder.html">\Query_Builder</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="363" package="Query\Query_Builder">
<name>get</name>
<full_name>\Query_Builder_Interface::get()</full_name>
<docblock line="363">
<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="363" description="" type="" variable="$table"/>
<tag name="param" line="363" description="" type="int" variable="$limit">
<type>int</type>
</tag>
<tag name="param" line="363" description="" type="int" variable="$offset">
<type>int</type>
</tag>
<tag name="return" line="363" description="" type="\PDOStatement">
<type link="PDOStatement.html">\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="" line="376" package="Query\Query_Builder">
<name>get_where</name>
<full_name>\Query_Builder_Interface::get_where()</full_name>
<docblock line="376">
<description>Convience method for get() with a where clause</description>
<long-description></long-description>
<tag name="param" line="376" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="376" description="" type="array" variable="$where">
<type>array</type>
</tag>
<tag name="param" line="376" description="" type="int" variable="$limit">
<type>int</type>
</tag>
<tag name="param" line="376" description="" type="int" variable="$offset">
<type>int</type>
</tag>
<tag name="return" line="376" description="" type="\PDOStatement">
<type link="PDOStatement.html">\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="" line="386" package="Query\Query_Builder">
<name>count_all</name>
<full_name>\Query_Builder_Interface::count_all()</full_name>
<docblock line="386">
<description>Retreive the number of rows in the selected table</description>
<long-description></long-description>
<tag name="param" line="386" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="386" 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="" line="397" package="Query\Query_Builder">
<name>count_all_results</name>
<full_name>\Query_Builder_Interface::count_all_results()</full_name>
<docblock line="397">
<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="397" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="397" 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="" line="408" package="Query\Query_Builder">
<name>insert</name>
<full_name>\Query_Builder_Interface::insert()</full_name>
<docblock line="408">
<description>Creates an insert clause, and executes it</description>
<long-description></long-description>
<tag name="param" line="408" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="408" description="" type="mixed" variable="$data">
<type>mixed</type>
</tag>
<tag name="return" line="408" description="" type="\PDOStatement">
<type link="PDOStatement.html">\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="" line="419" package="Query\Query_Builder">
<name>insert_batch</name>
<full_name>\Query_Builder_Interface::insert_batch()</full_name>
<docblock line="419">
<description>Creates and executes a batch insertion query</description>
<long-description></long-description>
<tag name="param" line="419" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="419" description="" type="array" variable="$data">
<type>array</type>
</tag>
<tag name="return" line="419" description="" type="\PDOStatement">
<type link="PDOStatement.html">\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="" line="430" package="Query\Query_Builder">
<name>update</name>
<full_name>\Query_Builder_Interface::update()</full_name>
<docblock line="430">
<description>Creates an update clause, and executes it</description>
<long-description></long-description>
<tag name="param" line="430" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="430" description="" type="mixed" variable="$data">
<type>mixed</type>
</tag>
<tag name="return" line="430" description="" type="\PDOStatement">
<type link="PDOStatement.html">\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="" line="441" package="Query\Query_Builder">
<name>delete</name>
<full_name>\Query_Builder_Interface::delete()</full_name>
<docblock line="441">
<description>Deletes data from a table</description>
<long-description></long-description>
<tag name="param" line="441" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="441" description="" type="mixed" variable="$where">
<type>mixed</type>
</tag>
<tag name="return" line="441" description="" type="\PDOStatement">
<type link="PDOStatement.html">\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="" line="454" package="Query\Query_Builder">
<name>get_compiled_select</name>
<full_name>\Query_Builder_Interface::get_compiled_select()</full_name>
<docblock line="454">
<description>Returns the generated 'select' sql query</description>
<long-description></long-description>
<tag name="param" line="454" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="454" description="" type="bool" variable="$reset">
<type>bool</type>
</tag>
<tag name="return" line="454" 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="" line="465" package="Query\Query_Builder">
<name>get_compiled_insert</name>
<full_name>\Query_Builder_Interface::get_compiled_insert()</full_name>
<docblock line="465">
<description>Returns the generated 'insert' sql query</description>
<long-description></long-description>
<tag name="param" line="465" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="465" description="" type="bool" variable="$reset">
<type>bool</type>
</tag>
<tag name="return" line="465" 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="" line="476" package="Query\Query_Builder">
<name>get_compiled_update</name>
<full_name>\Query_Builder_Interface::get_compiled_update()</full_name>
<docblock line="476">
<description>Returns the generated 'update' sql query</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="bool" variable="$reset">
<type>bool</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>$reset</name>
<default>TRUE</default>
<type>bool</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="487" package="Query\Query_Builder">
<name>get_compiled_delete</name>
<full_name>\Query_Builder_Interface::get_compiled_delete()</full_name>
<docblock line="487">
<description>Returns the generated 'delete' sql query</description>
<long-description></long-description>
<tag name="param" line="487" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="487" description="" type="bool" variable="$reset">
<type>bool</type>
</tag>
<tag name="return" line="487" 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="" line="498" package="Query\Query_Builder">
<name>reset_query</name>
<full_name>\Query_Builder_Interface::reset_query()</full_name>
<docblock line="498">
<description>Clear out the class variables, so the next query can be run</description>
<long-description></long-description>
<tag name="return" line="498" 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="462d3bb354426dad36c0a2963f60e850" 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="" line="22" package="Query\Core">
<extends>\InvalidArgumentException</extends>
<name>BadDBDriverException</name>
<full_name>\BadDBDriverException</full_name>
<docblock line="22">
<description>Generic exception for bad drivers</description>
<long-description></long-description>
<tag name="package" line="22" description="Query"/>
<tag name="subpackage" line="22" description="Core"/>
</docblock>
</class>
<class final="true" abstract="false" namespace="" line="33" package="Query\Core">
<extends/>
<name>Connection_Manager</name>
<full_name>\Connection_Manager</full_name>
<docblock line="33">
<description>Connection manager class to manage connections for the
Query method</description>
<long-description></long-description>
<tag name="package" line="33" description="Query"/>
<tag name="subpackage" line="33" description="Core"/>
</docblock>
<property static="false" visibility="private" line="39" namespace="" package="Query\Core">
<name>$connections</name>
<default>array()</default>
<docblock line="39">
<description>Map of named database connections</description>
<long-description></long-description>
<tag name="var" line="39" description="" type="array" variable="">
<type>array</type>
</tag>
</docblock>
</property>
<property static="true" visibility="private" line="45" namespace="" package="Query\Core">
<name>$instance</name>
<default>null</default>
<docblock line="45">
<description>Class instance variable</description>
<long-description></long-description>
<tag name="var" line="45" description="" type="\Connection_Manager" variable="">
<type link="Connection_Manager.html">\Connection_Manager</type>
</tag>
</docblock>
</property>
<method final="false" abstract="false" static="false" visibility="private" namespace="" line="52" package="Query\Core">
<name>__construct</name>
<full_name>\Connection_Manager::__construct()</full_name>
<docblock line="52">
<description>Private constructor to prevent multiple instances</description>
<long-description></long-description>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="private" namespace="" line="59" package="Query\Core">
<name>__clone</name>
<full_name>\Connection_Manager::__clone()</full_name>
<docblock line="59">
<description>Private clone method to prevent cloning</description>
<long-description></long-description>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="private" namespace="" line="67" package="Query\Core">
<name>__wakup</name>
<full_name>\Connection_Manager::__wakup()</full_name>
<docblock line="67">
<description>Make sure serialize/deseriaze doesn't work</description>
<long-description></long-description>
<tag name="throws" line="67" description="" type="\DomainException">
<type link="DomainException.html">\DomainException</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="true" visibility="public" namespace="" line="80" package="Query\Core">
<name>get_instance</name>
<full_name>\Connection_Manager::get_instance()</full_name>
<docblock line="80">
<description>Return a connection manager instance</description>
<long-description></long-description>
<tag name="staticvar" line="80" description="null $instance"/>
<tag name="return" line="80" description="" type="\Connection_Manager">
<type link="Connection_Manager.html">\Connection_Manager</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="100" package="Query\Core">
<name>get_connection</name>
<full_name>\Connection_Manager::get_connection()</full_name>
<docblock line="100">
<description>Returns the connection specified by the name given</description>
<long-description></long-description>
<tag name="param" line="100" description="" type="mixed" variable="$name">
<type>mixed</type>
</tag>
<tag name="return" line="100" description="" type="\Query_Builder">
<type link="Query_Builder.html">\Query_Builder</type>
</tag>
<tag name="throws" line="100" description="" type="\InvalidArgumentException">
<type link="InvalidArgumentException.html">\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="" line="126" package="Query\Core">
<name>connect</name>
<full_name>\Connection_Manager::connect()</full_name>
<docblock line="126">
<description>Parse the passed parameters and return a connection</description>
<long-description></long-description>
<tag name="param" line="126" description="" type="array|object" variable="$params">
<type>array</type>
<type>object</type>
</tag>
<tag name="return" line="126" description="" type="\Query_Builder">
<type link="Query_Builder.html">\Query_Builder</type>
</tag>
<tag name="throws" line="126" description="" type="\BadConnectionException">
<type link="BadConnectionException.html">\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="" line="169" package="Query\Core">
<name>parse_params</name>
<full_name>\Connection_Manager::parse_params()</full_name>
<docblock line="169">
<description>Parses params into a dsn and option array</description>
<long-description></long-description>
<tag name="param" line="169" description="" type="\ArrayObject" variable="$params">
<type link="ArrayObject.html">\ArrayObject</type>
</tag>
<tag name="throws" line="169" description="" type="\BadDBDriverException">
<type link="BadDBDriverException.html">\BadDBDriverException</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$params</name>
<default></default>
<type>\ArrayObject</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="private" namespace="" line="213" package="Query\Core">
<name>create_dsn</name>
<full_name>\Connection_Manager::create_dsn()</full_name>
<docblock line="213">
<description>Create the dsn from the db type and params</description>
<long-description></long-description>
<tag name="param" line="213" description="" type="string" variable="$dbtype">
<type>string</type>
</tag>
<tag name="param" line="213" description="" type="array|object" variable="$params">
<type>array</type>
<type>object</type>
</tag>
<tag name="return" line="213" 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="4854e868f18de116ea0f7269a7a0d5b7" 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="" line="22" package="Query\Drivers">
<extends/>
<name>DB_Util</name>
<full_name>\DB_Util</full_name>
<docblock line="22">
<description>Abstract class defining database / table creation methods</description>
<long-description></long-description>
<tag name="package" line="22" description="Query"/>
<tag name="subpackage" line="22" description="Drivers"/>
</docblock>
<property static="false" visibility="private" line="27" namespace="" package="Query\Drivers">
<name>$conn</name>
<default></default>
<docblock line="27">
<description>Reference to the current connection object</description>
<long-description></long-description>
</docblock>
</property>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="34" package="Query\Drivers">
<name>__construct</name>
<full_name>\DB_Util::__construct()</full_name>
<docblock line="34">
<description>Save a reference to the connection object for later use</description>
<long-description></long-description>
<tag name="param" line="34" 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="" line="48" package="Query\Drivers">
<name>__call</name>
<full_name>\DB_Util::__call()</full_name>
<docblock line="48">
<description>Enable calling driver methods</description>
<long-description></long-description>
<tag name="param" line="48" description="" type="string" variable="$method">
<type>string</type>
</tag>
<tag name="param" line="48" description="" type="array" variable="$args">
<type>array</type>
</tag>
<tag name="return" line="48" 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="" line="67" package="Query\Drivers">
<name>create_table</name>
<full_name>\DB_Util::create_table()</full_name>
<docblock line="67">
<description>Convienience public function to generate sql for creating a db table</description>
<long-description></long-description>
<tag name="param" line="67" description="" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="param" line="67" description="" type="array" variable="$fields">
<type>array</type>
</tag>
<tag name="param" line="67" description="" type="array" variable="$constraints">
<type>array</type>
</tag>
<tag name="param" line="67" description="" type="array" variable="$indexes">
<type>array</type>
</tag>
<tag name="return" line="67" 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="true" static="false" visibility="public" namespace="" line="117" package="Query\Drivers">
<name>delete_table</name>
<full_name>\DB_Util::delete_table()</full_name>
<docblock line="117">
<description>Get database-specific sql to drop a table</description>
<long-description></long-description>
<tag name="abstract" line="117" description=""/>
<tag name="param" line="117" description="" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="return" line="117" 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="" line="125" package="Query\Drivers">
<name>backup_structure</name>
<full_name>\DB_Util::backup_structure()</full_name>
<docblock line="125">
<description>Return an SQL file with the database table structure</description>
<long-description></long-description>
<tag name="abstract" line="125" description=""/>
<tag name="return" line="125" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="true" static="false" visibility="public" namespace="" line="133" package="Query\Drivers">
<name>backup_data</name>
<full_name>\DB_Util::backup_data()</full_name>
<docblock line="133">
<description>Return an SQL file with the database data as insert statements</description>
<long-description></long-description>
<tag name="abstract" line="133" description=""/>
<tag name="return" line="133" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
</class>
<source>eJy1Vltv2zYUfpZ+xalhwFLgSFvRp2Zum4tXoMgemmbYQ1AYtHQscZEpjaTSekH++w5JUZZdu0OBNDBimjyX73znQv72timbMD05CeEEPrYoN7Qw698lotuAi5ZXOUpI4YpptmQK4XyptGSZ5rWAa7ZB2Wm9a1h2zwoMAm8L3rFWl7UMglu+rnW5gQ8J/MWkRGFPs7rZSF6UOrj0K4iyGF7+8utLODVfr6xcxcU9BEGpdaNep2nBddkuk6xep+yBM/2KkKRbnxXPUCh08iTelLxSupUF1oKUkvY+zeoc03zJ8tNOmBTTMExTOH22v9Az6/mCrGJKQY4rLrgoIPeEpkCLCiGTyCyrayTWcrXHK2xDVO3Sb15J/oBS2QDYrqeri8WfmlfwGIaBwRKQ6g2ukOjPEHQNuiSnrUkHqdRCoEtqvfybVkY8DYOG7DONMDYCZwNLn9gDAgP5jcF9Q7CqJVRkQ0JLTJOu1aewJFt7GWveu2yXlBZYtcKZWSzokCJrMx1ZuTgMHsMgGOuSq9M3ZgdmHmDwZDA+byL7mOfCJYpVlc2g5b5P115khNgIjd3x8IQ6gG1gzGSh3LZEqk/KO/+K+XESyGvUWZs67Y6ITt0ILIhiuTBaC+slcv8HVE09otgb+SmkGXMvtrX/h+foZ6XmshYPHAW3pbhPHpVmgQKlKWT1T2Ur0nUbJYhBvnQdeCyDgq3xQP5WHKtcHThw5cq40IdOucjxKw7KpUuf83Yk/RYtLizMyAKaegDTA25nLu3xdM+p3/cdlNVVuxauVKiHulPT5iZRN1jLggn+LwIZrYGJzpyzlsMXmsTgbNAesbq2A8xpzwvYsX9nfhnkn3tPTjAIJnrT4ARmbyBJkmm/uw3o2zMLYW+bogoIBLKsjDpygCnwfo3w2Hgycib84P/wmdY4KnXnUBvpyJqFF7NZ7yyGt84ZvIbJxNgxPRbwVURtgetGb6JhwuIeUx/A4NRHYSOw+0bcyR+AR9AG1H3uhqPSNponD4UI+1Bz4fPn7iVNctQuBbUrXey9cbVLyQDjoH4MSGEhNrJu1JZlQkL6k9EkGYuEvs763YS440ohDXar4zmNDX0jeNzdfRoRmaPR99SHce8bGZ71pgYJVneWKpI5G3D03g8Oc7n54WEvOn9d1yv7uxshhIyEKNzLm/n57Rxuzy+u52Bjp7Kg8CGyBFgxCoCvm4qeI9FkCvTxUOKhyCSeWKDdoDDbfmZ30+896v49caoazPiKpodRp7bNKXyacnsjzj8Wvj/wDs2m/pmxP6RyrHB3SMVnO28Pa4umyKeP17DidJPaAWLI6x9D7inkbvtWHsX7Q7iW9FZqm0VvNPpxWGZhCpzTY1Fq8ksVscZuwD8XQOPEYnsyT9G5yE1p5ctFS6+4hN7q/wGXX2kI</source>
</file>
<file path="drivers/sqlite/sqlite_util.php" generated-path="drivers.sqlite.sqlite_util.html" hash="85d9dc16cf73ef055e885e3ee297157b" 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="" line="24" package="Query\Drivers">
<extends>\DB_Util</extends>
<name>SQLite_Util</name>
<full_name>\SQLite_Util</full_name>
<docblock line="24">
<description>SQLite-specific backup, import and creation methods</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="" line="35" package="Query\Drivers">
<name>create_table</name>
<full_name>\SQLite_Util::create_table()</full_name>
<docblock line="35">
<description>Convenience public function to create a new table</description>
<long-description></long-description>
<tag name="param" line="35" description="&lt;p&gt;//Name of the table&lt;/p&gt;" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="param" line="35" 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="35" description="&lt;p&gt;// column =&gt; constraint pairs&lt;/p&gt;" type="array" variable="$constraints">
<type>array</type>
</tag>
<tag name="param" line="35" description="&lt;p&gt;// column =&gt; index pairs&lt;/p&gt;" type="array" variable="$indexes">
<type>array</type>
</tag>
<tag name="return" line="35" 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="" line="91" package="Query\Drivers">
<name>delete_table</name>
<full_name>\SQLite_Util::delete_table()</full_name>
<docblock line="91">
<description>SQL to drop the specified table</description>
<long-description></long-description>
<tag name="param" line="91" description="" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="return" line="91" 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="" line="104" package="Query\Drivers">
<name>backup_data</name>
<full_name>\SQLite_Util::backup_data()</full_name>
<docblock line="104">
<description>Create an SQL backup file for the current database's data</description>
<long-description></long-description>
<tag name="param" line="104" description="" type="array" variable="$excluded">
<type>array</type>
</tag>
<tag name="return" line="104" 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="" line="171" package="Query\Drivers">
<name>backup_structure</name>
<full_name>\SQLite_Util::backup_structure()</full_name>
<docblock line="171">
<description>Create an SQL backup file for the current database's structure</description>
<long-description></long-description>
<tag name="return" line="171" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" static="false" visibility="public" line="24">
<name>query</name>
<docblock>
<description/>
<long-description/>
<tag name="magic" line="24"/>
<tag name="return" line="24" type="">
<type/>
</tag>
<tag name="method" line="24" description="" method_name="query"/>
</docblock>
</method>
<method final="false" static="false" visibility="public" line="24">
<name>quote</name>
<docblock>
<description/>
<long-description/>
<tag name="magic" line="24"/>
<tag name="return" line="24" type="">
<type/>
</tag>
<tag name="method" line="24" 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="da047fca234b81c28f390fca158a7170" 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="" line="24" package="Query\Drivers">
<extends>\DB_Util</extends>
<name>PgSQL_Util</name>
<full_name>\PgSQL_Util</full_name>
<docblock line="24">
<description>Posgres-specific backup, import and creation methods</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="" line="32" package="Query\Drivers">
<name>delete_table</name>
<full_name>\PgSQL_Util::delete_table()</full_name>
<docblock line="32">
<description>Database-specific SQL for dropping a table</description>
<long-description></long-description>
<tag name="param" line="32" description="" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="return" line="32" 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="" line="44" package="Query\Drivers">
<name>backup_structure</name>
<full_name>\PgSQL_Util::backup_structure()</full_name>
<docblock line="44">
<description>Create an SQL backup file for the current database's structure</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="" line="58" package="Query\Drivers">
<name>backup_data</name>
<full_name>\PgSQL_Util::backup_data()</full_name>
<docblock line="58">
<description>Create an SQL backup file for the current database's data</description>
<long-description></long-description>
<tag name="param" line="58" description="" type="array" variable="$exclude">
<type>array</type>
</tag>
<tag name="return" line="58" 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="24">
<name>query</name>
<docblock>
<description/>
<long-description/>
<tag name="magic" line="24"/>
<tag name="return" line="24" type="">
<type/>
</tag>
<tag name="method" line="24" description="" method_name="query"/>
</docblock>
</method>
<method final="false" static="false" visibility="public" line="24">
<name>get_tables</name>
<docblock>
<description/>
<long-description/>
<tag name="magic" line="24"/>
<tag name="return" line="24" type="">
<type/>
</tag>
<tag name="method" line="24" description="" method_name="get_tables"/>
</docblock>
</method>
</class>
<markers>
<todo line="46">Implement Backup function</todo>
</markers>
<source>eJzNVk1v20YQPZO/YioIJWnIYhLkZMdpbEtOXaiWbcntIQmEFbkStya59H44FgL/985+kGLdHlogh/picnbmzZs3s0O9+6kpmjA9OAjhAG40FTt8MM8XglJngDPNypwKSGFCFFkTSeF0LZUgmWK8hhnZUeGjPjQkuydbGgQtFnwgWhVcBMGSVVwVO/hlDL8TIWhtTzPe7ATbFio4b58gzhJ48+r1Gzg0/95av5LV9xAEhVKNPErTLVOFXo8zXqXkkRH1Fpmk+5wly2gtqfNH96ZgpVRabCmvMWis79OM5zTN1yQ/9M4YmIZhmsLhd/sLW2WvudwKKg9lQzO2YRmsUSfdjIBVDRcKSJ1DJiixglYUBcvlC0lhX53U69Y4EeyRCmnNLg4q9kRzeDDeMXaJ1VsYyocy6fug/mQHW6pW2NCSyjix1WclkRKut4ub2epOsRLok6J1LmFy5t6/hWFgSgoQqx2GfVEYBhsuIBe8aUxeAhbeuNsQrEWQClpWNamoswuKzan9gTGlYdDoNXYGNrp2c5bTkirqCMc2NgmDb2EQ+OBocju/huXp2WwKg2hsPcbRIDoOg2dD+/s2tpPh3LSNYgdt+a6vsGEltVKogkKmzbQryL1gkTSF6gxZ96T5NxI49FUXHXsFsLblfDKHy6opaWVynXkePrKn0v9SD/P4ckrcjA7pU1bq/D/MiRfJQMZt9IkFixOv19BNPZzAUBVMHr7v34Tj0Cl6wUqFW49rZVn7kB3XkPM6UvCV1Ao92SaGH4BWjdp16Uwem6iXyTJY5Wyzib1x1BWHOQPblGCI6RqtVnhhMcY0y5H5SB0LU5UVkpKsAL7+g2aGBFqMoUUGIrGyPQmPtpjOpudLs9xv57+aO4IyVhiT+GuCnqKvitshdnm4U8y38h5mm73fUJUVp2UZX0/mR0cX0+X5z6vTxWJ+7kQ0xCdWK5LnoLitwI4C2+w1BSadfCYCD+KM61rFbbIE3sHrBDJeK1Zr6oA9z6u72azLdEXWbrx4qasazPWXsLZbTpl1Y87u6U4C33giQioQ/KsFdFEG9IPrlHHtSHx69cWXNGT4qRBqhXFdV+N9uX76Db5zxFlFg7mT0rh0jWqlNJ1CLNMr16zAvHbz8khKjUNpXVwSk+VGc0zizgxCTWmOOx+LVbuG/h2lIk3smP5oWzuC6MFARMkIPPQ/xkRmQKLOJ+y8Vn6F41BdXi2mt0u4vFrOX4wUxPiOH7gSv7RxNBgNDJLX2Zwn8Nvp7G66gLjnNmrTjaPkODoO+8T27f5LGz59sQPZsbLFPIcvJnYf3L9j4xMYfK4/14OOAb4OkEIPPxkbW3dF/Q7qodiN+mx+OkzxO47j1WzRutL4xRybn1d/Al9ztO8=</source>
</file>
<file path="drivers/pgsql/pgsql_sql.php" generated-path="drivers.pgsql.pgsql_sql.html" hash="aa3200ca394625d739a03abc87098f2a" 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="" line="21" package="Query\Drivers">
<extends>\Abstract_SQL</extends>
<name>PgSQL_SQL</name>
<full_name>\PgSQL_SQL</full_name>
<docblock line="21">
<description>PostgreSQL specifc SQL</description>
<long-description></long-description>
<tag name="package" line="21" description="Query"/>
<tag name="subpackage" line="21" description="Drivers"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="29" package="Query\Drivers">
<name>explain</name>
<full_name>\PgSQL_SQL::explain()</full_name>
<docblock line="29">
<description>Get the query plan for the sql query</description>
<long-description></long-description>
<tag name="param" line="29" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="return" line="29" 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="" line="41" package="Query\Drivers">
<name>random</name>
<full_name>\PgSQL_SQL::random()</full_name>
<docblock line="41">
<description>Random ordering keyword</description>
<long-description></long-description>
<tag name="return" line="41" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="53" package="Query\Drivers">
<name>db_list</name>
<full_name>\PgSQL_SQL::db_list()</full_name>
<docblock line="53">
<description>Returns sql to list other databases</description>
<long-description></long-description>
<tag name="return" line="53" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="69" package="Query\Drivers">
<name>table_list</name>
<full_name>\PgSQL_SQL::table_list()</full_name>
<docblock line="69">
<description>Returns sql to list tables</description>
<long-description></long-description>
<tag name="return" line="69" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="87" package="Query\Drivers">
<name>system_table_list</name>
<full_name>\PgSQL_SQL::system_table_list()</full_name>
<docblock line="87">
<description>Returns sql to list system tables</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="" line="105" package="Query\Drivers">
<name>view_list</name>
<full_name>\PgSQL_SQL::view_list()</full_name>
<docblock line="105">
<description>Returns sql to list views</description>
<long-description></long-description>
<tag name="return" line="105" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="123" package="Query\Drivers">
<name>trigger_list</name>
<full_name>\PgSQL_SQL::trigger_list()</full_name>
<docblock line="123">
<description>Returns sql to list triggers</description>
<long-description></long-description>
<tag name="return" line="123" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="140" package="Query\Drivers">
<name>function_list</name>
<full_name>\PgSQL_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="NULL">
<type>NULL</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="152" package="Query\Drivers">
<name>procedure_list</name>
<full_name>\PgSQL_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="" line="170" package="Query\Drivers">
<name>sequence_list</name>
<full_name>\PgSQL_SQL::sequence_list()</full_name>
<docblock line="170">
<description>Return sql to list sequences</description>
<long-description></long-description>
<tag name="return" line="170" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="188" package="Query\Drivers">
<name>column_list</name>
<full_name>\PgSQL_SQL::column_list()</full_name>
<docblock line="188">
<description>Return sql to list columns of the specified table</description>
<long-description></long-description>
<tag name="param" line="188" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="188" 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="" line="211" package="Query\Drivers">
<name>type_list</name>
<full_name>\PgSQL_SQL::type_list()</full_name>
<docblock line="211">
<description>SQL to show list of field types</description>
<long-description></long-description>
<tag name="return" line="211" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
</class>
<source>eJzVV21v2zYQ/iz9ipsxQHaQWG3RT22GzU7UdYMbp3a2bl8m0BItEZYolqSSGFn223sUJfkl62oHnbPlS2jquTvecy88nn4vUuH6R0cuHMH7ksolLsz6jaTUbsCwZFlMJfhwTjSZEUVhMFNakkizgsOILKmspX4gpU4LCY5zxfJCp0v4uQ8fiJSUV5+jQiwlS1LtnDUr6EY9ePHs+Qs4Mf9eVriM8QUqSbUW6pXvJ0yn5awfFblPrhnRL9Gu35zWoCPK8VQVHuEiZZnSpUxowVGoXy78qIipH89IfFKDUdB3Xd+Hk6/25zY8XhZKJ5JO349ACRqxeQS4bigSJFqQhMLq/KqcNZvnkl1TqarTRRlRCi4TlA2NLnqrKY9VS361eee6jjHroKIfqQadUvhYhU1khMMcg2G21MfMbhtgBcZzSJIDqmI8gW8RYLclReZ4vW+2fNcR5Qxpg3nJbcjpLSpnvGukeq5z5zpOLdYJfrscDX66gF+DyXA8DeDOYO47r13n3pz06/Ldej4hPC5yKCTmqXFnQZc3+GPl7C5eyUpJd9MhDyaDi/Pxu27P+7d9qAyqKlS6gIwpDVhCWHhxXXZqP3/iWWiUbDl0enpqktFxnGkwCs6uoIPqOclpB95Mxu+gI5KwMdgxsA9vg0mwhroYXwEGuOtpmmMaaPrMO27Xz72ekRlPzoMJDH9fExtMz1w0/AQkoi/ZvtxVMrvRZ6GVk2bbksg4Vl5OjK5QRSnNSadvkWqdVCurlwIJ+g684QAr5mowHAWeAWHiNZBaR02++eh0PYxUhJHKisQ7Bu+hSa/3+okoV0uFGfEo5q1o+F8NwP+A/GtGb/Yk3Yj8I9nQsm2gW+2iMrjOqmVgvV3sTFpL+8rON3+B9wdKepudZQV4wtaCI0xi7uv9mouV2im7j76U0vUJNpK61v/IpnEwLjeobNh5yOXFL6PRZ5hsFn9HpRE7vBtKF5LGIGQR0biU+3a/Vm631ieLUjO+W/OrsZuFWo2nLHp0qrRNEjtoWMY6rEsWe2mdhd7h2uBmICjOuzza+/qpxXbjPzK80myLfsObmd07BrDGdo1eMB5Xt810q6M1mg7a0DZIi4qszLHHFXP7arDpgflcXYKfezu0H3ej2BqxBFvZL9CMkzzjJAtFoZjRcFzlZ63GMGY3zNRaXeUb32M6J2Wm7R5TIS+zzNisQSkxTylsljm5ZXmZhxnliU7tV17m+J6IQiGRB4WW2xg/LIZ+zd0q3qu5xAT7zrp6vxnzbdcOUSzm2YgBV2lxU78y5oBBzjDKSN6+d5kp/N3GtKXYmhvq5oJVgT+qGWz9EmvgzfX/Z+itt5t2ZpttVVEj2DJ5j8/8gMfGTZFgtmOoORN9kYpPj7yRSA==</source>
</file>
<file path="classes/driver_interface.php" generated-path="classes.driver_interface.html" hash="a2da7a8a54d50c3b6831533167951e0f" 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="" line="22" package="Query\Drivers">
<name>Driver_Interface</name>
<full_name>\Driver_Interface</full_name>
<docblock line="22">
<description>PDO Interface to implement for database drivers</description>
<long-description></long-description>
<tag name="package" line="22" description="Query"/>
<tag name="subpackage" line="22" description="Drivers"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="33" package="Query\Drivers">
<name>__construct</name>
<full_name>\Driver_Interface::__construct()</full_name>
<docblock line="33">
<description>Constructor/Connection method</description>
<long-description></long-description>
<tag name="param" line="33" description="" type="string" variable="$dsn">
<type>string</type>
</tag>
<tag name="param" line="33" description="" type="\[string]" variable="$username">
<type link="[string].html">\[string]</type>
</tag>
<tag name="param" line="33" description="" type="\[string]" variable="$password">
<type link="[string].html">\[string]</type>
</tag>
<tag name="param" line="33" description="" type="\[array]" variable="$driver_options">
<type link="[array].html">\[array]</type>
</tag>
<tag name="return" line="33" 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>\[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="" line="40" package="Query\Drivers">
<name>beginTransaction</name>
<full_name>\Driver_Interface::beginTransaction()</full_name>
<docblock line="40">
<description>Begin a transaction</description>
<long-description></long-description>
<tag name="return" line="40" description="" type="bool">
<type>bool</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="47" package="Query\Drivers">
<name>commit</name>
<full_name>\Driver_Interface::commit()</full_name>
<docblock line="47">
<description>Commit a transaction</description>
<long-description></long-description>
<tag name="return" line="47" description="" type="bool">
<type>bool</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="54" package="Query\Drivers">
<name>errorCode</name>
<full_name>\Driver_Interface::errorCode()</full_name>
<docblock line="54">
<description>Return the current error code</description>
<long-description></long-description>
<tag name="return" line="54" description="" type="mixed">
<type>mixed</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="61" package="Query\Drivers">
<name>errorInfo</name>
<full_name>\Driver_Interface::errorInfo()</full_name>
<docblock line="61">
<description>Return information about the current error</description>
<long-description></long-description>
<tag name="return" line="61" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="69" package="Query\Drivers">
<name>exec</name>
<full_name>\Driver_Interface::exec()</full_name>
<docblock line="69">
<description>Execute an SQL statement and return the number of affected rows</description>
<long-description></long-description>
<tag name="param" line="69" description="" type="string" variable="$statement">
<type>string</type>
</tag>
<tag name="return" line="69" 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="" line="77" package="Query\Drivers">
<name>getAttribute</name>
<full_name>\Driver_Interface::getAttribute()</full_name>
<docblock line="77">
<description>Get a connection attribute for the current db driver</description>
<long-description></long-description>
<tag name="param" line="77" description="" type="int" variable="$attribute">
<type>int</type>
</tag>
<tag name="returm" line="77" 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="" line="84" package="Query\Drivers">
<name>rollback</name>
<full_name>\Driver_Interface::rollback()</full_name>
<docblock line="84">
<description>Rollback a transaction</description>
<long-description></long-description>
<tag name="return" line="84" description="" type="bool">
<type>bool</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="92" package="Query\Drivers">
<name>setAttribute</name>
<full_name>\Driver_Interface::setAttribute()</full_name>
<docblock line="92">
<description>Set a connection attribute</description>
<long-description></long-description>
<tag name="param" line="92" description="" type="int" variable="$attribute">
<type>int</type>
</tag>
<tag name="param" line="92" description="" type="mixed" variable="$value">
<type>mixed</type>
</tag>
<tag name="return" line="92" 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>eJytVU1P20AQPTsS/2EOOQQEcYs4tUUFElpRRbQUqh6qKtpdT+wV9q61H4Go6n/v2OvECU6KKppL7J1589587Pjd+zIr93rxwcFeDw7gxqNZVE/12weDGI7gwss8QQMxjJljnFmEc26dYcJJrWDCFmhWuLOSiXuWYhSt4sEZ8y7TJoruZKFdtoBPQ/jOjEEVzEKXCyPTzEWj5RMMxD4cv3p9DEfV30lwzKW6hyjKnCvtmzhOpcs8HwpdxGwumTshOfEabS4FKosBQP5lJnPrvElRK0IN/X0sdIJxwlly1DhXyHivR2WJ4ei//eqATZ2/jD/DlXJoZkwgOA2yKHMsUDmYaQPJssaJkXM0tlNZWMvQer48HbfupF+uCML5tGX8VYmJajURxRhpRb30wmkT07PC0NUCqWVJ7RL8iN6wAshXqhT6iVUb5z+C4Sf0vUWjWIE7zCWz9kGbZNNM08AWZA1JT3VZibCNj0FqmoK5lgFF+UWl59QxmHkV9E6nYpnIoBJ32Ao5vf42mRy2zM17TfmUEU7D+WB//+1mnS4wlQoY0NwrG0Z/vTqNRq51vlMjr0LctfjBU46RLgrpXkYi6hid0F8D1GUIwldXzwEaQ/NW3YAtHIV8xN3VrqEjQu7ikYpmuWC1M+Pauy7zFtK69H8nvaLAHdLLRxTeITAFtzcTmlHmwoViKgHTZq58wWmR6Rmw2YwGHcmqH+zuKV9F2tQpm4OtKknLoAU+lQofsWqwaG8ac0TGK/nV9V8vU8KbJdAVSAqgv0KuqyueaV2K7nyJG7QhOn3Uec5ptbxsGE0TpdOx251VeD7NYKqzhP6c5R7/QZHdnv5hE6nS+bte/pc0OjQozXpY7dNh/c38A1caIYA=</source>
</file>
<file path="drivers/mysql/mysql_sql.php" generated-path="drivers.mysql.mysql_sql.html" hash="37aa4645d659f7c17e257522708b4270" 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="" line="22" package="Query\Drivers">
<extends>\Abstract_SQL</extends>
<name>MySQL_SQL</name>
<full_name>\MySQL_SQL</full_name>
<docblock line="22">
<description>MySQL specifc SQL</description>
<long-description></long-description>
<tag name="package" line="22" description="Query"/>
<tag name="subpackage" line="22" description="Drivers"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="32" package="Query\Drivers">
<name>limit</name>
<full_name>\MySQL_SQL::limit()</full_name>
<docblock line="32">
<description>Limit clause</description>
<long-description></long-description>
<tag name="param" line="32" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="param" line="32" description="" type="int" variable="$limit">
<type>int</type>
</tag>
<tag name="param" line="32" description="" type="int" variable="$offset">
<type>int</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>
<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="" line="50" package="Query\Drivers">
<name>explain</name>
<full_name>\MySQL_SQL::explain()</full_name>
<docblock line="50">
<description>Get the query plan for the sql query</description>
<long-description></long-description>
<tag name="param" line="50" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="return" line="50" 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="" line="62" package="Query\Drivers">
<name>random</name>
<full_name>\MySQL_SQL::random()</full_name>
<docblock line="62">
<description>Random ordering keyword</description>
<long-description></long-description>
<tag name="return" line="62" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="74" package="Query\Drivers">
<name>db_list</name>
<full_name>\MySQL_SQL::db_list()</full_name>
<docblock line="74">
<description>Returns sql to list other databases</description>
<long-description></long-description>
<tag name="return" line="74" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="87" package="Query\Drivers">
<name>table_list</name>
<full_name>\MySQL_SQL::table_list()</full_name>
<docblock line="87">
<description>Returns sql to list tables</description>
<long-description></long-description>
<tag name="param" line="87" description="" type="string" variable="$database">
<type>string</type>
</tag>
<tag name="return" line="87" 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="" line="101" package="Query\Drivers">
<name>system_table_list</name>
<full_name>\MySQL_SQL::system_table_list()</full_name>
<docblock line="101">
<description>Overridden in MySQL class</description>
<long-description></long-description>
<tag name="return" line="101" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="114" package="Query\Drivers">
<name>view_list</name>
<full_name>\MySQL_SQL::view_list()</full_name>
<docblock line="114">
<description>Returns sql to list views</description>
<long-description></long-description>
<tag name="return" line="114" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="126" package="Query\Drivers">
<name>trigger_list</name>
<full_name>\MySQL_SQL::trigger_list()</full_name>
<docblock line="126">
<description>Returns sql to list triggers</description>
<long-description></long-description>
<tag name="return" line="126" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="138" package="Query\Drivers">
<name>function_list</name>
<full_name>\MySQL_SQL::function_list()</full_name>
<docblock line="138">
<description>Return sql to list functions</description>
<long-description></long-description>
<tag name="return" line="138" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="150" package="Query\Drivers">
<name>procedure_list</name>
<full_name>\MySQL_SQL::procedure_list()</full_name>
<docblock line="150">
<description>Return sql to list stored procedures</description>
<long-description></long-description>
<tag name="return" line="150" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="162" package="Query\Drivers">
<name>sequence_list</name>
<full_name>\MySQL_SQL::sequence_list()</full_name>
<docblock line="162">
<description>Return sql to list sequences</description>
<long-description></long-description>
<tag name="return" line="162" description="" type="NULL">
<type>NULL</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="174" package="Query\Drivers">
<name>type_list</name>
<full_name>\MySQL_SQL::type_list()</full_name>
<docblock line="174">
<description>SQL to show list of field types</description>
<long-description></long-description>
<tag name="return" line="174" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="187" package="Query\Drivers">
<name>column_list</name>
<full_name>\MySQL_SQL::column_list()</full_name>
<docblock line="187">
<description>SQL to show infromation about columns in a table</description>
<long-description></long-description>
<tag name="param" line="187" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="187" 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/imlUCYgSfFf1091FVxdMwslAio3SkyrhxV7wKn7r7jqphfjvN2sbAinkglSUfMkynpmd59nZZ+y//s7CTDfOz3U4hy855QUu1LrHKa0M8DlnUUA5GNAlksyIoGDOhOTElyxNwCYF5XXUp4z492RBNW2dCz6RXIYp1zSXxakMC/inDXeEc5qUT/00KzhbhFLrrFfQ9Fvw4bffP8Cl+vex9ItYcg+aFkqZiT8MY8FkmM/afhob5IER+RErMZ72jJhPE0Erf3TPQhYJmfMFTRMMauf3hp8G1AhmJLisnTHQ0HXDgMtf9qevmR0UzhcbREZ9NvcB18/4gqfSRT5bG7ucPVAuysL8iAhR5ZmqXPSHpEkgNidRGpe6rqkdNUxks5hJwLAcoaGhNOJ+nMSAISxZwHvxPdo2s0TC+0jF/WRN53NBazOnyGRSJ1EmQ9eyfIY0wjxPqqYoszTVBhd1yot1kqueaTtWS9eWuqaxOTThHTAxTfKYcuY3a68WOpQeWr2dytU+A7s/6LuwrHKuzv5EjxWiPuBV5Vpd7AQo/198zBvWr6kEGVL4Xt6cLCIJzFNemrCyyvy/p/EagukPTM6SkuKayzrszPp6a5v9IVhfXWvYtboIHp1ODn1MkiCNIeWoFQrPPS0e8ccT2tfA4mWS5i6iBozNYbfZapwaQbmdKE9KptjDQgJKFkpfUAufOA5NMJuqJM/gnDk3ozvomq752XQsB+5urLEF3lpcPXh31WAJtk1MVJap8EMak8bJz28Peqwo2ga927BrVl5PSJmv4mQTfdVo7IoBjTNZPD1vtWCHOKTNRtZ649EAvOXGbeUhQVs9s+V76r4ZoUpzFgQ0QbGstb7U6+O6RRRC0ni6xdGza+BYttVxwStRTYfmwPJqGn5uF69duTme0tC6xapAp3NjDUzv6tueLvvWeItL9sDo45FkqZAXSapoTEhMXySp3Np7C9CIbrFQ4/0o3HXUfuhly4/719fW+ORNP66L3UK0LvJISOvFYUy9ybDj9kdDcFzTnbwFNCFTTgPIeOrTIOfHDoJN3GGMt+NRx+pO8Jq+HUiK7yeJvwfccGLbh1SrDtqHTIWdGIbSWqxfhOljPbDnMGc0CkAW2bHHpEL2T+xKVLp9x+0Plbqo6T11/719WYE7I3syGDreqUf3NglYCE+rQoDM0hy/AdIoj1F8cDaRagIfGuibh6+jq0pcj/Mydt+LTg+bAGomKrKWlXP9RrrCby4rCdTBxQW241S9wuNX6X/Sl+AD</source>
</file>
<file path="drivers/firebird/firebird_sql.php" generated-path="drivers.firebird.firebird_sql.html" hash="5402e0642509ec9cb3d6f8ab5afb989a" 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="" line="22" package="Query\Drivers">
<extends>\Abstract_SQL</extends>
<name>Firebird_SQL</name>
<full_name>\Firebird_SQL</full_name>
<docblock line="22">
<description>Firebird Specific SQL</description>
<long-description></long-description>
<tag name="package" line="22" description="Query"/>
<tag name="subpackage" line="22" description="Drivers"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="32" package="Query\Drivers">
<name>limit</name>
<full_name>\Firebird_SQL::limit()</full_name>
<docblock line="32">
<description>Limit clause</description>
<long-description></long-description>
<tag name="param" line="32" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="param" line="32" description="" type="int" variable="$limit">
<type>int</type>
</tag>
<tag name="param" line="32" description="" type="int" variable="$offset">
<type>int</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>
<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="" line="57" package="Query\Drivers">
<name>explain</name>
<full_name>\Firebird_SQL::explain()</full_name>
<docblock line="57">
<description>Get the query plan for the sql query</description>
<long-description></long-description>
<tag name="param" line="57" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="return" line="57" 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="" line="69" package="Query\Drivers">
<name>random</name>
<full_name>\Firebird_SQL::random()</full_name>
<docblock line="69">
<description>Random ordering keyword</description>
<long-description></long-description>
<tag name="return" line="69" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="82" package="Query\Drivers">
<name>db_list</name>
<full_name>\Firebird_SQL::db_list()</full_name>
<docblock line="82">
<description>Returns sql to list other databases</description>
<long-description></long-description>
<tag name="return" line="82" description="" type="NULL">
<type>NULL</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="94" package="Query\Drivers">
<name>table_list</name>
<full_name>\Firebird_SQL::table_list()</full_name>
<docblock line="94">
<description>Returns sql to list tables</description>
<long-description></long-description>
<tag name="return" line="94" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="111" package="Query\Drivers">
<name>system_table_list</name>
<full_name>\Firebird_SQL::system_table_list()</full_name>
<docblock line="111">
<description>Returns sql to list system tables</description>
<long-description></long-description>
<tag name="return" line="111" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="128" package="Query\Drivers">
<name>view_list</name>
<full_name>\Firebird_SQL::view_list()</full_name>
<docblock line="128">
<description>Returns sql to list views</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="" line="143" package="Query\Drivers">
<name>trigger_list</name>
<full_name>\Firebird_SQL::trigger_list()</full_name>
<docblock line="143">
<description>Returns sql to list triggers</description>
<long-description></long-description>
<tag name="return" line="143" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="158" package="Query\Drivers">
<name>function_list</name>
<full_name>\Firebird_SQL::function_list()</full_name>
<docblock line="158">
<description>Return sql to list functions</description>
<long-description></long-description>
<tag name="return" line="158" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="170" package="Query\Drivers">
<name>procedure_list</name>
<full_name>\Firebird_SQL::procedure_list()</full_name>
<docblock line="170">
<description>Return sql to list stored procedures</description>
<long-description></long-description>
<tag name="return" line="170" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="198" package="Query\Drivers">
<name>sequence_list</name>
<full_name>\Firebird_SQL::sequence_list()</full_name>
<docblock line="198">
<description>Return sql to list sequences</description>
<long-description></long-description>
<tag name="return" line="198" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="215" package="Query\Drivers">
<name>column_list</name>
<full_name>\Firebird_SQL::column_list()</full_name>
<docblock line="215">
<description>Return sql to list columns of the specified table</description>
<long-description></long-description>
<tag name="param" line="215" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="215" 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="" line="261" package="Query\Drivers">
<name>type_list</name>
<full_name>\Firebird_SQL::type_list()</full_name>
<docblock line="261">
<description>SQL to show list of field types</description>
<long-description></long-description>
<tag name="return" line="261" 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="c9fc903ae245d9fba62590a057768263" 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="" line="22" package="Query\Drivers">
<extends>\Abstract_Driver</extends>
<name>SQLite</name>
<full_name>\SQLite</full_name>
<docblock line="22">
<description>SQLite specific class</description>
<long-description>Extends PDO to simplify cross-database issues</long-description>
<tag name="package" line="22" description="Query"/>
<tag name="subpackage" line="22" description="Drivers"/>
</docblock>
<property static="false" visibility="protected" line="29" namespace="" package="Query\Drivers">
<name>$statement</name>
<default></default>
<docblock line="29">
<description>Reference to the last executed sql query</description>
<long-description></long-description>
<tag name="var" line="29" description="" type="\PDOStatement" variable="">
<type link="PDOStatement.html">\PDOStatement</type>
</tag>
</docblock>
</property>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="39" package="Query\Drivers">
<name>__construct</name>
<full_name>\SQLite::__construct()</full_name>
<docblock line="39">
<description>Open SQLite Database</description>
<long-description></long-description>
<tag name="param" line="39" description="" type="string" variable="$dsn">
<type>string</type>
</tag>
<tag name="param" line="39" description="" type="string" variable="$user">
<type>string</type>
</tag>
<tag name="param" line="39" description="" type="string" variable="$pass">
<type>string</type>
</tag>
<tag name="param" line="39" 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="" line="52" package="Query\Drivers">
<name>truncate</name>
<full_name>\SQLite::truncate()</full_name>
<docblock line="52">
<description>Empty a table</description>
<long-description></long-description>
<tag name="param" line="52" 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="" line="70" package="Query\Drivers">
<name>get_tables</name>
<full_name>\SQLite::get_tables()</full_name>
<docblock line="70">
<description>List tables for the current database</description>
<long-description></long-description>
<tag name="return" line="70" description="" type="mixed">
<type>mixed</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="85" package="Query\Drivers">
<name>get_system_tables</name>
<full_name>\SQLite::get_system_tables()</full_name>
<docblock line="85">
<description>List system tables for the current database</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="" line="101" package="Query\Drivers">
<name>insert_batch</name>
<full_name>\SQLite::insert_batch()</full_name>
<docblock line="101">
<description>Create sql for batch insert</description>
<long-description></long-description>
<tag name="param" line="101" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="101" description="" type="array" variable="$data">
<type>array</type>
</tag>
<tag name="return" line="101" 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>eJy1VlFv4zYMfrZ/BVEEiFMk8Xa4p9zatUtSDEPW7poc9jAMPllWYqG2rEp0cV7R/z5KtpOul24YcM1LDIr8SH38SPuHH3Wuw/j0NIRT+FgL09CDe74yQrQG+KmWRSYMxLBgyFJmBVymFg3jKCsFK9YI00VdaMbv2E4EQY8FF6zGvDJBsJFlhXkDv0zhd2aMUP6UV7oxcpdjMO+fIOIjePfd9+9g4v7ee79CqjsIghxR21kc7yTmdTrlVRmzB8nwPVUSH3IWkgtlRetP7jqXhcXa7ESlKGha38W8ykScpSybdM4UGIdhHMPkm/3Cntn1x5VEAVYLLreSAy+YtS84g0P5tk5748LIB2GsL85H9VjiCwqV2X0rktYTHsMwcFkDAroVW0FEcwFYAeYCCAApUvAaRQb2voB7n5ScfcDFAzPw2+JmjQxFKRQ6axwG2lQouIsZ2P7ow7NEN1qovrBeJAdQzQwrgcqUageDzKpj5tqSio7YtWPqmZ2kwxpC8bdNKu00aPsy65SaCdtatdJMEk6HaGqOkcs7btOcXX9arcYtdPd8FPXMW6PRKAwewyAgaSzW1yAtWFnqooHPRCDdeBZrhnmMFcnpM/lRnUTPbPY8+0nn+ujKeDrpCulqGH0IgyfH5rfV3r47y1JjAwyoL8WrbdkfHuGR7qA4tT1qvQ58dC3PmSX4ze2n6/nlZgmOvlL+xVzsuHVMawRVga21rgzCtjJej6TbmhVAY1wylU3Jd+BEeQbDxXK1JKir25tf4WQ4bRNPhydDJ7tggLm0k/O9FimiM3k9Rw5l5D2NoLFX8DLgjRlfSZozX7Ld35XXbukhZF/NR1djKb+I7JUO7AQmLV7Usd8R1V/svpice4ekoNxRe/mBofzHqdkzk6XJVhYoTOS8J+dbgTy/LIqI1sBsdrXczH9OLtfrm/loDEPFSjF8a7l68mxjqVP/m8NWzX/8+S80tsgv2IzjTsqVosF2enbp2qFNStqatFm7CXH3xpyhWwTVFphqgNYBqZrRop0eiG2Xx/AfGG/O3dwIhr5wz1nKqJkg6e1m8D8H/+WGJY6PcPsKs22OxCfs1sS4xfh6i25Ijo49VSE8uC8MpjWBuZj+RbWVRqTSZM863fPqFrZn8Yle1kuVuSZ0JLfre0qfNH8DnkaIkg==</source>
</file>
<file path="drivers/sqlite/sqlite_sql.php" generated-path="drivers.sqlite.sqlite_sql.html" hash="6a85f515905ee4daebe6c1dc38fa9f31" 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="" line="22" package="Query\Drivers">
<extends>\Abstract_SQL</extends>
<name>SQLite_SQL</name>
<full_name>\SQLite_SQL</full_name>
<docblock line="22">
<description>SQLite Specific SQL</description>
<long-description></long-description>
<tag name="package" line="22" description="Query"/>
<tag name="subpackage" line="22" description="Drivers"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="30" package="Query\Drivers">
<name>explain</name>
<full_name>\SQLite_SQL::explain()</full_name>
<docblock line="30">
<description>Get the query plan for the sql query</description>
<long-description></long-description>
<tag name="param" line="30" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="return" line="30" 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="" line="42" package="Query\Drivers">
<name>random</name>
<full_name>\SQLite_SQL::random()</full_name>
<docblock line="42">
<description>Random ordering keyword</description>
<long-description></long-description>
<tag name="return" line="42" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="54" package="Query\Drivers">
<name>db_list</name>
<full_name>\SQLite_SQL::db_list()</full_name>
<docblock line="54">
<description>Returns sql to list other databases</description>
<long-description></long-description>
<tag name="return" line="54" description="" type="NULL">
<type>NULL</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="66" package="Query\Drivers">
<name>table_list</name>
<full_name>\SQLite_SQL::table_list()</full_name>
<docblock line="66">
<description>Returns sql to list tables</description>
<long-description></long-description>
<tag name="return" line="66" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="83" package="Query\Drivers">
<name>system_table_list</name>
<full_name>\SQLite_SQL::system_table_list()</full_name>
<docblock line="83">
<description>Overridden in SQLite class</description>
<long-description></long-description>
<tag name="return" line="83" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="95" package="Query\Drivers">
<name>view_list</name>
<full_name>\SQLite_SQL::view_list()</full_name>
<docblock line="95">
<description>Returns sql to list views</description>
<long-description></long-description>
<tag name="return" line="95" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="109" package="Query\Drivers">
<name>trigger_list</name>
<full_name>\SQLite_SQL::trigger_list()</full_name>
<docblock line="109">
<description>Returns sql to list triggers</description>
<long-description></long-description>
<tag name="return" line="109" description="" type="NULL">
<type>NULL</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="121" package="Query\Drivers">
<name>function_list</name>
<full_name>\SQLite_SQL::function_list()</full_name>
<docblock line="121">
<description>Return sql to list functions</description>
<long-description></long-description>
<tag name="return" line="121" description="" type="NULL">
<type>NULL</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="133" package="Query\Drivers">
<name>procedure_list</name>
<full_name>\SQLite_SQL::procedure_list()</full_name>
<docblock line="133">
<description>Return sql to list stored procedures</description>
<long-description></long-description>
<tag name="return" line="133" description="" type="NULL">
<type>NULL</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="145" package="Query\Drivers">
<name>sequence_list</name>
<full_name>\SQLite_SQL::sequence_list()</full_name>
<docblock line="145">
<description>Return sql to list sequences</description>
<long-description></long-description>
<tag name="return" line="145" description="" type="NULL">
<type>NULL</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="157" package="Query\Drivers">
<name>type_list</name>
<full_name>\SQLite_SQL::type_list()</full_name>
<docblock line="157">
<description>SQL to show list of field types</description>
<long-description></long-description>
<tag name="return" line="157" description="" type="string[]">
<type>string[]</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="170" package="Query\Drivers">
<name>column_list</name>
<full_name>\SQLite_SQL::column_list()</full_name>
<docblock line="170">
<description>SQL to show infromation about columns in a table</description>
<long-description></long-description>
<tag name="param" line="170" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="170" 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>eJzNV21P2zAQ/uz8ilM0KQWNZkN82kCj0IwxlRZCEaBpQm7iNhaJHWwHqBD/fee8wGDtRCXe+sXO5Z7zPXe583X9W57kjr+87MAyHBRMTXFj998VY5UAtgqexkyBD11q6IhqBp2RNopGhksBPTplqkZt5jQ6pxNGSGMLNmlhEqkIGfJMmmQKP9twTJVionwbyXyq+CQxZLvZQStagtVPn1dhxS5rpV7KxTkQkhiT6y++P+EmKUbtSGY+veTUrKEn/v2ZKY+Y0KzSR/U84ak2hZowKRDULs79SMbMj0c0XqmVEeg7ju/DyrP9nCayhwc9bhgc5iziYx7Z50cRg3vndTFqhF3FL5nSpWtRSrWuLZ3hAuzaMBHru2SUwhvHIfZQgpZ2mAGTMLgo05inVMBYqlKkL9JKbBVLZXRE0QzQFBcT+IAKlVgxjJuo5VbkOyQvRhg0GBei+gTYNRrnomVRSw65cQipYW5wst/r7Pbh4CgITwH3fbixarfuV4fcWmefN+B35EMqYpmBVPjpWkbnbHqFD/d8n0JMlUZaDzl5EHb63cFea8l7aQ7lgbrMlpGQcm0AawhrMa4rUf/Dp3/U681hE4/OrIlHdCzgDXig/+kM9/+bjhIzi8P6+rotKULIYdALtofgCpox1wq+h4M9cPFkWzYZ1YapUn78IwgDcM00Z+6GV1r2rHwQdoMQtk5rE9ANDrcdNP7CIRpgnSsex0wAF02/KEt+sRDpKTLMzuZG6o2yfcnZ1YJMLGSBXMOsRMPfWYYN8KxR7xXSOfOLx9ttYrv5AiVbY940kw9INJ4txKLZvB8a2kjFYsiVjFhcqMX66B3qHfFheJuLaDEeDeiNaNhxBf3Xibyqr7YxjDlLY7DlOq9b/Po9r1QQNIsJzpp02vJ2+8NgJwi9j+CFQadn12FwMrTrVm+w5S29IlsuxkpmtHSbjmRhIJJpkWG/wN5Pq2tu3mB29/JpXbQyXMWlwj4aZvbDzs5ep75a0THZcr12pdn23GbEucXBOBCxTVHdYXFp43+HPxdyKDQ=</source>
</file>
<file path="classes/abstract_sql.php" generated-path="classes.abstract_sql.html" hash="fed1cb24958b823dc3f4769c346d4916" 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="" line="22" package="Query\Drivers">
<extends/>
<implements>\SQL_Interface</implements>
<name>Abstract_SQL</name>
<full_name>\Abstract_SQL</full_name>
<docblock line="22">
<description>parent for database manipulation subclasses</description>
<long-description></long-description>
<tag name="package" line="22" description="Query"/>
<tag name="subpackage" line="22" description="Drivers"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="32" package="Query\Drivers">
<name>limit</name>
<full_name>\Abstract_SQL::limit()</full_name>
<docblock line="32">
<description>Limit clause</description>
<long-description></long-description>
<tag name="param" line="32" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="param" line="32" description="" type="int" variable="$limit">
<type>int</type>
</tag>
<tag name="param" line="32" description="" type="int" variable="$offset">
<type>int</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>
<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>eJytk11r2zAUhq8VyH84lF4kobG20qtupe3WBDI8SklhN4Mgy7ItYkuaPgqh5L9PX05XdlvfWHr9nkevjuSvt6pT0wleLKYTWMCTY/oQRnG21owlCb453tdMA4YHYklFDIP7ylhNqOVSQEkOTJ/q7oizndQIPfNB2u4APwr4RbRmIn2mUh00bzuLvo8jmNE5XH76fAnL8LpKxp6LPSDUWavMNcYtt52rCioHTF44sVd+aXyKHOyUCcNSgferjvfGOt0yKXxV4faYyprhuiL1MptTpSJ0T1pfeaLh6cS3BcPyw54IzH1WxDfDQiM11GM/ByK4cj2JDTWuoj0xhpm3ruaQ8M+OvW1UHzR/Ydrk7CQfDkTK6ax226cS+KB6Nvj1DfjpbiMs0w2hDF5DRBQzIk8v+cAjwIU2Iciyz6HJAB7IRQvn5k//Tud+X+d9KP1flk1j2Khr5o9GZE7UfG6kXOVPBhon0s2KpFlY5SJjL0bOzfq+3K7mvsgHRyh4oLiBs9+i3PzcPMNr8h/PvsR9Id7AjJudcAPTnM4yZR4AifCGgMf1ersKiGSKDISOCZSTB3eQo3qMt2UlapANjN3feUcRf7C/TLP1uw==</source>
</file>
<file path="drivers/pgsql/pgsql_driver.php" generated-path="drivers.pgsql.pgsql_driver.html" hash="5b3a144cea418edb48580ee7e81010af" 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="" line="22" package="Query\Drivers">
<extends>\Abstract_Driver</extends>
<name>PgSQL</name>
<full_name>\PgSQL</full_name>
<docblock line="22">
<description>PostgreSQL specifc class</description>
<long-description>Extends PDO to simplify cross-database issues</long-description>
<tag name="package" line="22" description="Query"/>
<tag name="subpackage" line="22" description="Drivers"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="32" package="Query\Drivers">
<name>__construct</name>
<full_name>\PgSQL::__construct()</full_name>
<docblock line="32">
<description>Connect to a PosgreSQL database</description>
<long-description></long-description>
<tag name="param" line="32" description="" type="string" variable="$dsn">
<type>string</type>
</tag>
<tag name="param" line="32" description="" type="string" variable="$username">
<type>string</type>
</tag>
<tag name="param" line="32" description="" type="string" variable="$password">
<type>string</type>
</tag>
<tag name="param" line="32" 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="" line="46" package="Query\Drivers">
<name>truncate</name>
<full_name>\PgSQL::truncate()</full_name>
<docblock line="46">
<description>Empty a table</description>
<long-description></long-description>
<tag name="param" line="46" 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="" line="59" package="Query\Drivers">
<name>get_schemas</name>
<full_name>\PgSQL::get_schemas()</full_name>
<docblock line="59">
<description>Get a list of schemas for the current connection</description>
<long-description></long-description>
<tag name="return" line="59" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
</class>
<source>eJy1VE1z2jAQPcu/YsukY8gE3GZyItCWgtOmpeQDOrl0xiNkYWtiS44kp2Uy+e9d2QaSTNJTygXJ+/bp7duVBh+LtPCC/X0P9uGi5HqNC7c+0ZzXH+BzKbKYawhgQi1dUsNhtDRWU2aFkjCla66brE8FZdc04YRsuOATLW2qNCELkSubruFbD66o1lxWUaaKtRZJasl4s4I268Dhu/eH0HV/RxUuE/IaCEmtLUw/CBJh03LZYyoP6K2g9giVBLszM8G4NLzGI7xIRWZsqROuJCb1yuuAqZgH8ZLG3QaMiYHnBQF0X+3nbZw9V8Ymms8vpmAKzsSKAcuoMU9sg10FplxuPk60uOXaVPqqLDhPHBP/Y7mMzbYZUQ2EO88j7lyCPGMlJWcWrALqVDQi4qaRDlPhUIGmOSCRkAnsxUY+97k0XEua8+diBQr7rXT8MIZtpmuAPVW4STEuFHikKJdoOaxKWQ9QFDEMWl0y23YnH+wOGsoyyw525M2+5t3QDqttu9PxyJ1HiFhBG9kKZRo2v0jMTeZ3YDgcwsloOg87VYUwbEJ9v+f2x+gbQeFc2n7/H6Ie6DnYiugce+TeGf+687NtZJgXdo09xL5lL7ZtG3zGZSxFMmp5u0Y1Zu1h+c6HxeXP2Xi0CKHlQ68hwoXf8o8dyqbCdD/cuOlsu5T/Xe0XbrHWTBgLagWGpTynBlZKg005sNI9HxZYPdxY3c4QzfGay3pCXnAi4TZqKNuPbRgMBng7cE/m4TQcL2ByOl+cznDRqhNc+1twcnn2A1pFElU2mZZLuPoaXoaPYbOzBUxPv4duyn5Fb30HG80mj0Fv0HwhsbKcOnGNMN9DHdU8NvU0HYirGx49bcQ9PluhjJ1X1UBHNa6Hb/tftUCs/w==</source>
</file>
<file path="common.php" generated-path="common.html" hash="1d3be3ae6057378e5f1a576070fcd421" 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>
<function namespace="" line="34" package="Query\Core">
<name>do_include</name>
<full_name>\do_include()</full_name>
<docblock line="34">
<description>Bulk directory loading workaround for use
with array_map and glob</description>
<long-description></long-description>
<tag name="subpackage" line="34" description="Core"/>
<tag name="param" line="34" description="" type="string" variable="$path">
<type>string</type>
</tag>
<tag name="return" line="34" 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="51" package="Query\Core">
<name>mb_trim</name>
<full_name>\mb_trim()</full_name>
<docblock line="51">
<description>Multibyte-safe trim function</description>
<long-description></long-description>
<tag name="subpackage" line="51" description="Core"/>
<tag name="param" line="51" description="" type="string" variable="$string">
<type>string</type>
</tag>
<tag name="return" line="51" 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="67" package="Query\Core">
<name>db_filter</name>
<full_name>\db_filter()</full_name>
<docblock line="67">
<description>Filter out db rows into one array</description>
<long-description></long-description>
<tag name="subpackage" line="67" description="Core"/>
<tag name="param" line="67" description="" type="array" variable="$array">
<type>array</type>
</tag>
<tag name="param" line="67" description="" type="mixed" variable="$index">
<type>mixed</type>
</tag>
<tag name="return" line="67" 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="88" package="Query\Core">
<name>Query</name>
<full_name>\Query()</full_name>
<docblock line="88">
<description>Connection function</description>
<long-description></long-description>
<tag name="subpackage" line="88" description="Core"/>
<tag name="param" line="88" description="" type="mixed" variable="$params">
<type>mixed</type>
</tag>
<tag name="return" line="88" 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>eJy9ldtu1DAQhq+TpxiqlTZbug1UvWo5lBaKQFQICYmLUiInmSTWJnbwodsI+u5MnNNuBUJILZW2m7Xnt//5Zuw8e1kXtR/u7vqwC58sqoYe2udzhdgNwKnlZYoKQnjNDIuZRngVa6NYYrgU8IE1qHrVSc2SFcvR84a14IRZU0jleZ95JU3RwPt9+MKUQuFmE1k3iueF8c6GJwiSBRw8eXoAy/br0MWVXKzA8wpjan0Uhjk3hY33E1mF7Jozc0hOwmnPkicoNHbxFF4XvNTGqhylING+XYWJTDFMY5Yu+2AShr4fhrC8tz9/IPu2lDErIbPCMdNgCmYglWJuQCErywYyboCJZl2gQsDS+dlEOlbn/k3yDAJ4NLqL8IZro4N5KiMuktKmOF8s/B++12bjkadTW64g5QoTI6lBSslSLnJYS7ViSlqRQiYVWMqhjV5TrYAqzpqoYjUlmUJOPNo5N3+ibTwkeSZVJ6K0FauA2qxdeVYzU3TjCqmOAq4lT9uB0PcG3zD5DZxg4Xtk2lP43ZLXSIpkmDj2vVv/9r+BrOKI8qjuULywpeFxY3CpWYbQRozSf4LTfW/hmYY2AfU+gl4x8nGSWmEeKaxLRph2wuDbV/148TOg/7NFaPXOHuzQZ5A+EMH+vJzz0tCNIy0dkhiUXGvgwkiQArtOGg7HXToTHBcGsyF6GK74DaYw4yLFG38D2BAX+lM7xVHmfATdKnu9zBVxJnAddXs878QBMSHW5IIlRS8BpslCz3mSXF6RaMYuu/WuHEt/qMMUdvxwgM+kENilObbcX5H27NwPvQnPXU1R/57Yhuimgl5DWc/nHb6kYoK2UDQ0eYkuusGjoxwNnWVtWHtmHVji8C6DRlqijUDzpu191rbtNZdW0xWaEHpDDpNxQd9rjyTXkU5YydTgY7Hd+aOZ5Yt230k+xrsKee2t3B/xPy5JNj8ausPXXOMeDM0FVNMtW7/Zup/e3rPvgDd0Z8qMVqgqeoHRK/sXIVo2Nw==</source>
</file>
<file path="classes/table_builder_interface.php" generated-path="classes.table_builder_interface.html" hash="d1e1c4c7d0362667f7b63d79da2108ce" 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="" line="22" package="Query\Table_Builder">
<name>Table_Builder_Interface</name>
<full_name>\Table_Builder_Interface</full_name>
<docblock line="22">
<description>Abstract class defining database / table creation methods</description>
<long-description></long-description>
<tag name="package" line="22" description="Query"/>
<tag name="subpackage" line="22" description="Table_Builder"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="31" package="Query\Table_Builder">
<name>__construct</name>
<full_name>\Table_Builder_Interface::__construct()</full_name>
<docblock line="31">
<description>Constructor</description>
<long-description></long-description>
<tag name="param" line="31" description="" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="param" line="31" description="" type="array" variable="$options">
<type>array</type>
</tag>
<tag name="param" line="31" description="" type="\Abstract_Driver" variable="$driver">
<type link="Abstract_Driver.html">\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>\Abstract_Driver</type>
</argument>
</method>
</interface>
<source>eJytUstuwjAQPNtfsQcOgAC3iFMfKi2oUqteKiH1GG2cJbFI7MgPpKjqv9dJSEGc64vX49nd2bEfnuqi5mI65TCFz0C2iUEbv1qiHoCXoMqMLAjYoscUHcFz6rxF6ZXR8IEN2VPWukZ5wJwYG2rBGoMvjGVspyrjiwbeF/CF1pLubqWpG6vywrPNEMFYTmB5c7uEebutOl6p9AEYK7yv3Z0QufJFSBfSVAKPCv0qKhHnnqWSpB31/EivC1U6H2xORsekRTgIaTISWYrZ/ESOiYJzIWD+b4sPzg5+gSzROchor7TSOWSDoQJiUBJIS9i5WlF0LXNXvsJ5RBfSAdy1qcnpmboxlPZk9yiv7pK3P/ybc9aKY7HWxugoL0hvbHvusNjRYgURb3WONFZ0iccHxAZGpm7FusubYdRka9Ux/ppR1u0tRXBWhzTaDfug+8+TJHJoPu6azP6KwmPfZTyZQV/rQv6pauToUJaTex7XD/8FVU3Yng==</source>
</file>
<file path="autoload.php" generated-path="autoload.html" hash="a4cf78100209ad9efdf0064a741cdd13" 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>eJytVF1P3DAQfE5+xeqESILg3CKeaFE5uEOlQipfah8jJ9kkFkmc2g7tCd1/7zpO7gKV2peehM7COzuzs+P7+KktW58dHPhwAHcdqjUd7PlKIbp/wEUnqgwVMFhywxOuERaJNoqnRsgGbvga1YA6b3n6xAv0vLEXnPPOlFJ53qOopSnX8GUO37lS2PS3qWzXShSl8S7HE4RpBMfv3h/Dkf066esq0TyB55XGtPqUsUKYskvmqawZfxbcnJAStuOsRIqNRldP5W0pKm06VaBsCDTvnlgqM2RZwrOjoZiAzPcZg6P/9vFHZxedkZXk1sVcKrBH0RTAn7moeFIhZKOzacW1Rv3Gz+1q2LblPeZIJqYIRoKS0kDLTdmDdJeMuEup3GAZ5qLBMLi7WDys4tvF4+fgEDKhGl5jGMdX1zerOI7mAQuiD1uOW+po22dKPJP0nbZ/cCzvr7+t7keWHeU8cJ30wMJoih+dUAha1jS7rGsKVN41fbK0r9xtOO3giuYU26nSG3IUfvRxfePgn0Ktq4rXQBG2S9jrAf0AI7PrFPNha6ErifwX33NHOLNoe/sT1XhNajwaqZdyRbIToTLQaMkMVmvfEzmEI0WMv4Q2OgxyWxansmkwNUEE+/swcpydQZAPjYLI94jeo5fD13HN2zDIZCyatOoyJJOLSibh1Hha5YhlB84uUuh5CukdNHTa+OM0sU0OjbSzGeYwG3xkL65oY3vM7Ix7bolb1ITU4sb6vtaOLHSciwrDCVkUwbDbWFKEX12RNKw0DkiKaDgljAYfpnuIFbYVpzazljyZHcKM/iZLcSqauPdu4DqE2+XX09MCzWJ8hEuXzTCyHD3J392mSSfCNs7lmXN5Y/3d9BF/QANdC3z7E+Drttpmi7QXFARKUfA6dOMLWTUZyHwLtxy/AWGrwG4=</source>
</file>
<file path="classes/query_parser.php" generated-path="classes.query_parser.html" hash="8aef9d3795a69e015ddc3d648daadc25" 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="" line="22" package="Query\Query_Builder">
<extends/>
<name>Query_Parser</name>
<full_name>\Query_Parser</full_name>
<docblock line="22">
<description>Utility Class to parse sql clauses for properly escaping identifiers</description>
<long-description></long-description>
<tag name="package" line="22" description="Query"/>
<tag name="subpackage" line="22" description="Query_Builder"/>
</docblock>
<property static="false" visibility="private" line="29" namespace="" 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="29">
<description>Regex patterns for various syntax components</description>
<long-description></long-description>
<tag name="var" line="29" description="" type="array" variable="">
<type>array</type>
</tag>
</docblock>
</property>
<property static="false" visibility="public" line="40" namespace="" package="Query\Query_Builder">
<name>$matches</name>
<default>array('functions' =&gt; array(), 'identifiers' =&gt; array(), 'operators' =&gt; array(), 'combined' =&gt; array())</default>
<docblock line="40">
<description>Regex matches</description>
<long-description></long-description>
<tag name="var" line="40" description="" type="array" variable="">
<type>array</type>
</tag>
</docblock>
</property>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="52" package="Query\Query_Builder">
<name>__construct</name>
<full_name>\Query_Parser::__construct()</full_name>
<docblock line="52">
<description>Constructor/entry point into parser</description>
<long-description></long-description>
<tag name="param" line="52" 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="" line="74" package="Query\Query_Builder">
<name>parse_join</name>
<full_name>\Query_Parser::parse_join()</full_name>
<docblock line="74">
<description>Public parser method for seting the parse string</description>
<long-description></long-description>
<tag name="param" line="74" 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="private" namespace="" line="88" package="Query\Query_Builder">
<name>filter_array</name>
<full_name>\Query_Parser::filter_array()</full_name>
<docblock line="88">
<description>Returns a more useful match array</description>
<long-description></long-description>
<tag name="param" line="88" description="" type="array" variable="$array">
<type>array</type>
</tag>
<tag name="return" line="88" 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>eJy1Vm1v2zYQ/iz9ihvgVVL8orTol3VNnCzJCgxFk3kZNiz2VFo+W2xkUSUpt17V/fYdqRe/JAtSrEtgWz4+x7t77jnSL4d5krvhwYELB/BzgXJND+b5R4lYGeCHgqczlBDCOdNsyhTC6VRpyWLNRQav2Rpl7XWSs/iWLdBxmr3ghBU6EdJxrvlS6GQNPw3gNyYlZnY1Fvla8kWinbPmCfw4gGeHT59B33w8t7iUZ7fgOInWuXoRhguuk2I6iMUyZCvO9HPKJNzETHmMmcIKT/A84anShVygyMhpUNyGsZhhOJuyWb8Gk2PoumEI/a/25zbM/qp5yvUazlKmFGgBOZNEo3qfQpyyQqGCuZCQS5GjTNeAKmY5zxbAZ5hpPuco1R7FsKlWFdMdY1R3zFYU25CV/cpElfDJdR2TmEPOI1zgR0pHa5RZlcWKSS4KBWqdafYRiONcZJSGMg7W6YQgQD1ka/M1dJ1c8hXTCJ0l03EStdsdVSjfdRxvXmRWMB4cHYPn37D+X6f9Pw7730WT7tj3BwfDYBwEXs9gN2XfRfcJPhgG3QppCGNa1Lij8vTNefnkybD8uxzT/7Ac/1mG5fHRsHxJr375bXk5Ksfd8s3ldTn+xpiPy98vR57rBN/fYcUWgw+VXUxJPHXVeH+5ymZW2YO94u6uNeXcXaE2THmGs72FnbTPKJyWRUwbhBSDZjcXPNNAr1pyclMMfWdLILzRWYekuFtUkz9EUdxs6xsYVel5get8oqxoWl6h3tLxjlpIFriIKkmwNPW9t96goxOu+se7OrnZiGMyIFTP5kPvW2DcQilv0oOr0cWr6JeL6+hydH4xIh6+JN6WwB6MuN2r/xqzleqDETcKuC/ehnNc0USTLzWPaRBZjHZ4haTBJyMBO/MiTZv4pmuPo79bPpK10n9UqUH3LffuYWonvX9jo1X9A2QI0IkUxSKhT2yGtgcsm8GCiLJGoTRITHHFaBzauXZ2wzXzS0nmfjViFtADb85TSjOyRi/Yz9MI4bOZw697ebRzfVWNZDXBsES6UGe22wq1EYApsb5RdNX8Lx1y6x29o9PCzng93nWV+yeA1b1Euk+zPSL+Zx5GNqYCRg2VCHTekIaqdm7O5e3CrRE67Rqc1Gnfd3m1ZGw326+cG0Iy/FDZ27O+0iE1A1mc1GhgCjpSfCAv67bldzMhT/C5arY3sACGFn9zOIEX9skwbJhsaW43qCj+bH+pXJDExRze28u9UseAfs/9A+b49sg=</source>
</file>
<file path="drivers/mysql/mysql_driver.php" generated-path="drivers.mysql.mysql_driver.html" hash="31da925b2585514da69c61d34b067d35" 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="" line="22" package="Query\Drivers">
<extends>\Abstract_Driver</extends>
<name>MySQL</name>
<full_name>\MySQL</full_name>
<docblock line="22">
<description>MySQL specific class</description>
<long-description>Extends PDO to simplify cross-database issues</long-description>
<tag name="package" line="22" description="Query"/>
<tag name="subpackage" line="22" description="Drivers"/>
</docblock>
<property static="false" visibility="protected" line="29" namespace="" package="Query\Drivers">
<name>$escape_char</name>
<default>'`'</default>
<docblock line="29">
<description>Set the backtick as the MySQL escape character</description>
<long-description></long-description>
<tag name="var" line="29" description="" type="string" variable="">
<type>string</type>
</tag>
</docblock>
</property>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="39" package="Query\Drivers">
<name>__construct</name>
<full_name>\MySQL::__construct()</full_name>
<docblock line="39">
<description>Connect to MySQL Database</description>
<long-description></long-description>
<tag name="param" line="39" description="" type="string" variable="$dsn">
<type>string</type>
</tag>
<tag name="param" line="39" description="" type="string" variable="$username">
<type>string</type>
</tag>
<tag name="param" line="39" description="" type="string" variable="$password">
<type>string</type>
</tag>
<tag name="param" line="39" 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="" line="61" package="Query\Drivers">
<name>truncate</name>
<full_name>\MySQL::truncate()</full_name>
<docblock line="61">
<description>Empty a table</description>
<long-description></long-description>
<tag name="param" line="61" 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+xQlVClRAtqoPEx1dGVCpE9C1pJr2lBrHEIvgpLbTLar633d2Euimrk/NS3y+u+87f3f25y95knvB8bEHx3BTcFXiwq4vFefVBnwtRBpzBQFMqKErqjmMVtooyozIJMxoyVWddZFTtqUbTkiDBRe0MEmmCAnFLjNJCd/68IMqxaXzsiwvldgkhoybFbRZB04+fDyBnv2durhUyC0QkhiT60EQbIRJilWfZbuAPgpqTrGS4MCZCsal5lU8hueJSLUp1IZnEpP6xTZgWcyDeEXjXh2MiYHnBQH03u3zGmXn5fJmBjrnTKwFA5ZSrf+RDA7V62LVbE6UeORKu9pcVg3FfxsuY71vRFQFwpPnEctJEGfJDZiEwwqxjGBboNrZNYJmNOfAEmrzsYOY4tIuHqkCRBVyY+3AI7nKDMeYGI6qrMhmwRD8e//sBeE4kxLjwGQ1RzMvB+wc2XY1OhzFWr62XWiuJN3x13w5avArU/FLH04TLeEoy+086qboYoWNhXUhqzGNIoZOowpm2pa4e+AZyiJNuwfs2v4bdujMdqfjkSePEJyTRl8rhubu2HfhZe8TesUa2jFfC8njtv99cj0YzH+iINEoDG+jq8VVGI2v5/PRYuJbPAdIGiLU1VFFO47z2m6263raNpS8BQnDc2gtpyEsRvPpsioJxtez2Sicgu9Mv9W1MJ3OGf6evbpgFCfPdC2Ovyv1Q+p3YDgcwuVotpx2XL9s151r4PetbftPsA1cmsHgDY1fyNvda2r5Lf07X7r9QE53uSmBAk5h+t8h3DtfGRo8imTUYBdcVN37I5MI3Tt/sBe23Qpv7xZjq+39UxX1fN+qDvaMr8lUxpCtwUkWxe6S9vHJ/QP5G5Og</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"/>
<deprecated count="0"/>
</project>