Query/docs/structure.xml

6564 lines
330 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<project title="Query" version="2.2.0&#10;">
<partials/>
<file path="classes/db_pdo.php" generated-path="classes.db_pdo.html" hash="c38ac57c5755203cbcd92bebd4939d2b" 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\Query">
<extends>\PDO</extends>
<name>DB_PDO</name>
<full_name>\DB_PDO</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="Query"/>
</docblock>
<property static="false" visibility="protected" line="27" namespace="" package="Query\Query">
<name>$statement</name>
<default></default>
<docblock line="27">
<description></description>
<long-description></long-description>
</docblock>
</property>
<property static="false" visibility="protected" line="30" namespace="" package="Query\Query">
<name>$escape_char</name>
<default>'"'</default>
<docblock line="30">
<description></description>
<long-description></long-description>
</docblock>
</property>
<property static="false" visibility="public" line="33" namespace="" package="Query\Query">
<name>$sql</name>
<default></default>
<docblock line="33">
<description></description>
<long-description></long-description>
</docblock>
</property>
<property static="false" visibility="public" line="36" namespace="" package="Query\Query">
<name>$util</name>
<default></default>
<docblock line="36">
<description></description>
<long-description></long-description>
</docblock>
</property>
<property static="false" visibility="public" line="39" namespace="" package="Query\Query">
<name>$last_query</name>
<default></default>
<docblock line="39">
<description></description>
<long-description></long-description>
</docblock>
</property>
<property static="false" visibility="public" line="42" namespace="" package="Query\Query">
<name>$table_prefix</name>
<default>''</default>
<docblock line="42">
<description></description>
<long-description></long-description>
</docblock>
</property>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="52" package="Query\Query">
<name>__construct</name>
<full_name>\DB_PDO::__construct()</full_name>
<docblock line="52">
<description>PDO constructor wrapper</description>
<long-description></long-description>
<tag name="param" line="52" description="" type="string" variable="$dsn">
<type>string</type>
</tag>
<tag name="param" line="52" description="" type="string" variable="$username">
<type>string</type>
</tag>
<tag name="param" line="52" description="" type="string" variable="$password">
<type>string</type>
</tag>
<tag name="param" line="52" 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="88" package="Query\Query">
<name>prepare_query</name>
<full_name>\DB_PDO::prepare_query()</full_name>
<docblock line="88">
<description>Simplifies prepared statements for database queries</description>
<long-description></long-description>
<tag name="param" line="88" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="param" line="88" description="" type="array" variable="$data">
<type>array</type>
</tag>
<tag name="return" line="88" description="PDOStatement / FALSE" type="mixed">
<type>mixed</type>
</tag>
<tag name="throws" line="88" 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="124" package="Query\Query">
<name>prepare_execute</name>
<full_name>\DB_PDO::prepare_execute()</full_name>
<docblock line="124">
<description>Create and execute a prepared statement with the provided parameters</description>
<long-description></long-description>
<tag name="param" line="124" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="param" line="124" description="" type="array" variable="$params">
<type>array</type>
</tag>
<tag name="return" line="124" 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="139" package="Query\Query">
<name>affected_rows</name>
<full_name>\DB_PDO::affected_rows()</full_name>
<docblock line="139">
<description>Returns number of rows affected by an INSERT, UPDATE, DELETE type query</description>
<long-description></long-description>
<tag name="return" line="139" description="" type="int">
<type>int</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="153" package="Query\Query">
<name>quote_table</name>
<full_name>\DB_PDO::quote_table()</full_name>
<docblock line="153">
<description>Quote database table name, and set prefix</description>
<long-description></long-description>
<tag name="param" line="153" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="153" 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="190" package="Query\Query">
<name>_prefix</name>
<full_name>\DB_PDO::_prefix()</full_name>
<docblock line="190">
<description>Sets the table prefix on the passed string</description>
<long-description></long-description>
<tag name="param" line="190" description="" type="string" variable="$str">
<type>string</type>
</tag>
<tag name="return" line="190" 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="209" package="Query\Query">
<name>quote_ident</name>
<full_name>\DB_PDO::quote_ident()</full_name>
<docblock line="209">
<description>Surrounds the string with the databases identifier escape characters</description>
<long-description></long-description>
<tag name="param" line="209" description="" type="mixed" variable="$ident">
<type>mixed</type>
</tag>
<tag name="return" line="209" 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="256" package="Query\Query">
<name>_quote</name>
<full_name>\DB_PDO::_quote()</full_name>
<docblock line="256">
<description>Helper method for quote_ident</description>
<long-description></long-description>
<tag name="param" line="256" description="" type="mixed" variable="$str">
<type>mixed</type>
</tag>
<tag name="return" line="256" 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="277" package="Query\Query">
<name>get_schemas</name>
<full_name>\DB_PDO::get_schemas()</full_name>
<docblock line="277">
<description>Return schemas for databases that list them</description>
<long-description></long-description>
<tag name="return" line="277" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="289" package="Query\Query">
<name>get_tables</name>
<full_name>\DB_PDO::get_tables()</full_name>
<docblock line="289">
<description>Return list of tables for the current database</description>
<long-description></long-description>
<tag name="return" line="289" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="301" package="Query\Query">
<name>get_dbs</name>
<full_name>\DB_PDO::get_dbs()</full_name>
<docblock line="301">
<description>Return list of dbs for the current connection, if possible</description>
<long-description></long-description>
<tag name="return" line="301" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="313" package="Query\Query">
<name>get_views</name>
<full_name>\DB_PDO::get_views()</full_name>
<docblock line="313">
<description>Return list of views for the current database</description>
<long-description></long-description>
<tag name="return" line="313" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="325" package="Query\Query">
<name>get_sequences</name>
<full_name>\DB_PDO::get_sequences()</full_name>
<docblock line="325">
<description>Return list of sequences for the current database, if they exist</description>
<long-description></long-description>
<tag name="return" line="325" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="337" package="Query\Query">
<name>get_functions</name>
<full_name>\DB_PDO::get_functions()</full_name>
<docblock line="337">
<description>Return list of function for the current database</description>
<long-description></long-description>
<tag name="return" line="337" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="349" package="Query\Query">
<name>get_procedures</name>
<full_name>\DB_PDO::get_procedures()</full_name>
<docblock line="349">
<description>Return list of stored procedures for the current database</description>
<long-description></long-description>
<tag name="return" line="349" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="361" package="Query\Query">
<name>get_triggers</name>
<full_name>\DB_PDO::get_triggers()</full_name>
<docblock line="361">
<description>Return list of triggers for the current database</description>
<long-description></long-description>
<tag name="return" line="361" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="374" package="Query\Query">
<name>get_system_tables</name>
<full_name>\DB_PDO::get_system_tables()</full_name>
<docblock line="374">
<description>Retreives an array of non-user-created tables for
the connection/database</description>
<long-description></long-description>
<tag name="return" line="374" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="387" package="Query\Query">
<name>get_columns</name>
<full_name>\DB_PDO::get_columns()</full_name>
<docblock line="387">
<description>Retrieve column information for the current database table</description>
<long-description></long-description>
<tag name="param" line="387" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="387" 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="399" package="Query\Query">
<name>get_types</name>
<full_name>\DB_PDO::get_types()</full_name>
<docblock line="399">
<description>Retrieve list of data types for the database</description>
<long-description></long-description>
<tag name="return" line="399" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="413" package="Query\Query">
<name>driver_query</name>
<full_name>\DB_PDO::driver_query()</full_name>
<docblock line="413">
<description>Method to simplify retreiving db results for meta-data queries</description>
<long-description></long-description>
<tag name="param" line="413" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="param" line="413" description="" type="bool" variable="$filtered_index">
<type>bool</type>
</tag>
<tag name="return" line="413" 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="443" package="Query\Query">
<name>num_rows</name>
<full_name>\DB_PDO::num_rows()</full_name>
<docblock line="443">
<description>Return the number of rows returned for a SELECT query</description>
<long-description></long-description>
<tag name="see" line="443" description="" link="\http://us3.php.net/manual/en/pdostatement.rowcount.php#87110"/>
<tag name="return" line="443" description="" type="int">
<type>int</type>
</tag>
</docblock>
</method>
<method final="false" abstract="true" static="false" visibility="public" namespace="" line="467" package="Query\Query">
<name>truncate</name>
<full_name>\DB_PDO::truncate()</full_name>
<docblock line="467">
<description>Empty the passed table</description>
<long-description></long-description>
<tag name="param" line="467" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="467" 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="478" package="Query\Query">
<name>insert_batch</name>
<full_name>\DB_PDO::insert_batch()</full_name>
<docblock line="478">
<description>Create sql for batch insert</description>
<long-description></long-description>
<tag name="param" line="478" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="478" description="" type="array" variable="$data">
<type>array</type>
</tag>
<tag name="return" line="478" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$data</name>
<default>array()</default>
<type>array</type>
</argument>
</method>
</class>
<source>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</source>
</file>
<file path="drivers/firebird/firebird_result.php" generated-path="drivers.firebird.firebird_result.html" hash="b982a41323135631817b1aaebea26e4d" 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="bool">
<type>bool</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="4676d786f607a0e85054da9e8ab9309d" 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>__construct</name>
<full_name>\Firebird_Util::__construct()</full_name>
<docblock line="33">
<description>Save a reference to the current connection object</description>
<long-description></long-description>
<tag name="param" line="33" description="" type="object" variable="$conn">
<type>object</type>
</tag>
<tag name="return" line="33" description="" type="void">
<type>void</type>
</tag>
</docblock>
<argument line="0" by_reference="true">
<name>$conn</name>
<default></default>
<type>object</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="50" package="Query\Drivers">
<name>create_table</name>
<full_name>\Firebird_Util::create_table()</full_name>
<docblock line="50">
<description>Convienience public function to generate sql for creating a db table</description>
<long-description></long-description>
<tag name="param" line="50" description="" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="param" line="50" description="" type="array" variable="$fields">
<type>array</type>
</tag>
<tag name="param" line="50" description="" type="array" variable="$constraints">
<type>array</type>
</tag>
<tag name="param" line="50" description="" type="array" variable="$indexes">
<type>array</type>
</tag>
<tag name="return" line="50" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$name</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$fields</name>
<default></default>
<type>array</type>
</argument>
<argument line="0" by_reference="false">
<name>$constraints</name>
<default>array()</default>
<type>array</type>
</argument>
<argument line="0" by_reference="false">
<name>$indexes</name>
<default>array()</default>
<type>array</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="106" package="Query\Drivers">
<name>delete_table</name>
<full_name>\Firebird_Util::delete_table()</full_name>
<docblock line="106">
<description>Drop the selected 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>\Firebird_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="133" package="Query\Drivers">
<name>backup_data</name>
<full_name>\Firebird_Util::backup_data()</full_name>
<docblock line="133">
<description>Create an SQL backup file for the current database's data</description>
<long-description></long-description>
<tag name="param" line="133" description="" type="array" variable="$exclude">
<type>array</type>
</tag>
<tag name="param" line="133" description="" type="bool" variable="$system_tables">
<type>bool</type>
</tag>
<tag name="return" line="133" 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="120">Implement Backup structure function</todo>
</markers>
<source>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</source>
</file>
<file path="drivers/pdo_firebird/pdo_firebird_util.php" generated-path="drivers.pdo_firebird.pdo_firebird_util.html" hash="4299b7a8ac82b03573d5b1c922e8559b" 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>\Firebird_Util</extends>
<name>PDO_Firebird_Util</name>
<full_name>\PDO_Firebird_Util</full_name>
<docblock line="24">
<description>Firebird-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>
</class>
<source>eJytUctOwzAQPCdfsbc+RGOoOAESBUIlEBIPgThajr1NrCaxWdsVEeLfcR+hAq744tHurGc9c3ZuK5uy8TiFMTwGpC6CNZ4T4rYAl0HXCgkY5MKLQjiEi8J5EtJr08Kd6JB2UzMr5FKUmCT9WzATwVeGkuRZN8ZXHdxm8CqIsN10pbEd6bLyyVWPYChHMD08msJkfR1veLVul5AklffWnTBWal+FIpOmYWKlhT+Om7C9Zq0ltg63/Ei3la6dD1SiaeNQFpZMGoVMFUJNduQ4yNKUMZj820lTwregCblpJQKhqK3w1ZDz/OaJc8hgwLKMLSKj0KS+AQ9e11lMZjA6Tft05rvmxFmUeqElFNHsYA9AN9aQB9EqkFFjk0qD0XXlfuUCe4tcKPpiTnqF5DYGyFo4Bw/5Pe/1+EtcBvDdY6sc/Kx+fK4Nu47CZgFWGf7nB18wJron</source>
</file>
<file path="classes/query_builder.php" generated-path="classes.query_builder.html" hash="ac5b71acda7f9f52ef9ec3d6ac415375" 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">
<extends/>
<implements>\iQuery_Builder</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"/>
</docblock>
<property static="false" visibility="protected" line="30" namespace="" package="Query\Query">
<name>$select_string</name>
<default></default>
<docblock line="30">
<description></description>
<long-description></long-description>
</docblock>
</property>
<property static="false" visibility="protected" line="33" namespace="" package="Query\Query">
<name>$from_string</name>
<default></default>
<docblock line="33">
<description></description>
<long-description></long-description>
</docblock>
</property>
<property static="false" visibility="protected" line="36" namespace="" package="Query\Query">
<name>$set_string</name>
<default></default>
<docblock line="36">
<description></description>
<long-description></long-description>
</docblock>
</property>
<property static="false" visibility="protected" line="39" namespace="" package="Query\Query">
<name>$order_string</name>
<default></default>
<docblock line="39">
<description></description>
<long-description></long-description>
</docblock>
</property>
<property static="false" visibility="protected" line="42" namespace="" package="Query\Query">
<name>$group_string</name>
<default></default>
<docblock line="42">
<description></description>
<long-description></long-description>
</docblock>
</property>
<property static="false" visibility="protected" line="49" namespace="" package="Query\Query">
<name>$set_array_keys</name>
<default></default>
<docblock line="49">
<description></description>
<long-description></long-description>
</docblock>
</property>
<property static="false" visibility="protected" line="52" namespace="" package="Query\Query">
<name>$order_array</name>
<default></default>
<docblock line="52">
<description></description>
<long-description></long-description>
</docblock>
</property>
<property static="false" visibility="protected" line="55" namespace="" package="Query\Query">
<name>$group_array</name>
<default></default>
<docblock line="55">
<description></description>
<long-description></long-description>
</docblock>
</property>
<property static="false" visibility="protected" line="62" namespace="" package="Query\Query">
<name>$values</name>
<default>array()</default>
<docblock line="62">
<description></description>
<long-description></long-description>
</docblock>
</property>
<property static="false" visibility="protected" line="65" namespace="" package="Query\Query">
<name>$where_values</name>
<default>array()</default>
<docblock line="65">
<description></description>
<long-description></long-description>
</docblock>
</property>
<property static="false" visibility="protected" line="68" namespace="" package="Query\Query">
<name>$limit</name>
<default></default>
<docblock line="68">
<description></description>
<long-description></long-description>
</docblock>
</property>
<property static="false" visibility="protected" line="71" namespace="" package="Query\Query">
<name>$offset</name>
<default></default>
<docblock line="71">
<description></description>
<long-description></long-description>
</docblock>
</property>
<property static="false" visibility="public" line="74" namespace="" package="Query\Query">
<name>$sql</name>
<default></default>
<docblock line="74">
<description></description>
<long-description></long-description>
</docblock>
</property>
<property static="false" visibility="protected" line="85" namespace="" package="Query\Query">
<name>$query_map</name>
<default>array()</default>
<docblock line="85">
<description></description>
<long-description></long-description>
</docblock>
</property>
<property static="false" visibility="protected" line="88" namespace="" package="Query\Query">
<name>$having_map</name>
<default></default>
<docblock line="88">
<description></description>
<long-description></long-description>
</docblock>
</property>
<property static="false" visibility="public" line="91" namespace="" package="Query\Query">
<name>$conn_name</name>
<default>""</default>
<docblock line="91">
<description></description>
<long-description></long-description>
</docblock>
</property>
<property static="false" visibility="public" line="94" namespace="" package="Query\Query">
<name>$queries</name>
<default></default>
<docblock line="94">
<description></description>
<long-description></long-description>
</docblock>
</property>
<property static="false" visibility="protected" line="97" namespace="" package="Query\Query">
<name>$explain</name>
<default>FALSE</default>
<docblock line="97">
<description></description>
<long-description></long-description>
</docblock>
</property>
<property static="false" visibility="public" line="100" namespace="" package="Query\Query">
<name>$db</name>
<default></default>
<docblock line="100">
<description></description>
<long-description></long-description>
</docblock>
</property>
<property static="false" visibility="protected" line="101" namespace="" package="Query\Query">
<name>$parser</name>
<default></default>
<docblock line="101">
<description></description>
<long-description></long-description>
</docblock>
</property>
<property static="false" visibility="public" line="102" namespace="" package="Query\Query">
<name>$util</name>
<default></default>
<docblock line="102">
<description></description>
<long-description></long-description>
</docblock>
</property>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="114" package="Query\Query">
<name>__construct</name>
<full_name>\Query_Builder::__construct()</full_name>
<docblock line="114">
<description>Constructor</description>
<long-description></long-description>
<tag name="param" line="114" description="" type="\DB_PDO" variable="$db">
<type link="DB_PDO.html">\DB_PDO</type>
</tag>
<tag name="param" line="114" 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>\DB_PDO</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="139" package="Query\Query">
<name>__destruct</name>
<full_name>\Query_Builder::__destruct()</full_name>
<docblock line="139">
<description>Destructor</description>
<long-description></long-description>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="154" package="Query\Query">
<name>select</name>
<full_name>\Query_Builder::select()</full_name>
<docblock line="154">
<description>Specifies rows to select in a query</description>
<long-description></long-description>
<tag name="param" line="154" description="" type="string" variable="$fields">
<type>string</type>
</tag>
<tag name="return" line="154" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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="protected" namespace="" line="200" package="Query\Query">
<name>_select</name>
<full_name>\Query_Builder::_select()</full_name>
<docblock line="200">
<description>Method to simplify select_ methods</description>
<long-description></long-description>
<tag name="param" line="200" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="200" description="" type="string" variable="$as">
<type>string</type>
</tag>
<tag name="return" line="200" 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="221" package="Query\Query">
<name>select_max</name>
<full_name>\Query_Builder::select_max()</full_name>
<docblock line="221">
<description>Selects the maximum value of a field from a query</description>
<long-description></long-description>
<tag name="param" line="221" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="221" description="" type="string" variable="$as">
<type>string</type>
</tag>
<tag name="return" line="221" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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="237" package="Query\Query">
<name>select_min</name>
<full_name>\Query_Builder::select_min()</full_name>
<docblock line="237">
<description>Selects the minimum value of a field from a query</description>
<long-description></long-description>
<tag name="param" line="237" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="237" description="" type="string" variable="$as">
<type>string</type>
</tag>
<tag name="return" line="237" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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="253" package="Query\Query">
<name>select_avg</name>
<full_name>\Query_Builder::select_avg()</full_name>
<docblock line="253">
<description>Selects the average value of a field from a query</description>
<long-description></long-description>
<tag name="param" line="253" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="253" description="" type="string" variable="$as">
<type>string</type>
</tag>
<tag name="return" line="253" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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="269" package="Query\Query">
<name>select_sum</name>
<full_name>\Query_Builder::select_sum()</full_name>
<docblock line="269">
<description>Selects the sum of a field from a query</description>
<long-description></long-description>
<tag name="param" line="269" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="269" description="" type="string" variable="$as">
<type>string</type>
</tag>
<tag name="return" line="269" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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="283" package="Query\Query">
<name>distinct</name>
<full_name>\Query_Builder::distinct()</full_name>
<docblock line="283">
<description>Adds the 'distinct' keyword to a query</description>
<long-description></long-description>
<tag name="return" line="283" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="297" package="Query\Query">
<name>explain</name>
<full_name>\Query_Builder::explain()</full_name>
<docblock line="297">
<description>Tell the database to give you the query plan instead of result set</description>
<long-description></long-description>
<tag name="return" line="297" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="311" package="Query\Query">
<name>from</name>
<full_name>\Query_Builder::from()</full_name>
<docblock line="311">
<description>Specify the database table to select from</description>
<long-description></long-description>
<tag name="param" line="311" description="" type="string" variable="$tblname">
<type>string</type>
</tag>
<tag name="return" line="311" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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="341" package="Query\Query">
<name>_like</name>
<full_name>\Query_Builder::_like()</full_name>
<docblock line="341">
<description>Simplify 'like' methods</description>
<long-description></long-description>
<tag name="param" line="341" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="341" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="341" description="" type="string" variable="$pos">
<type>string</type>
</tag>
<tag name="param" line="341" description="" type="string" variable="$like">
<type>string</type>
</tag>
<tag name="param" line="341" description="" type="string" variable="$conj">
<type>string</type>
</tag>
<tag name="return" line="341" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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="383" package="Query\Query">
<name>like</name>
<full_name>\Query_Builder::like()</full_name>
<docblock line="383">
<description>Creates a Like clause in the sql statement</description>
<long-description></long-description>
<tag name="param" line="383" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="383" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="383" description="" type="string" variable="$pos">
<type>string</type>
</tag>
<tag name="return" line="383" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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="398" package="Query\Query">
<name>or_like</name>
<full_name>\Query_Builder::or_like()</full_name>
<docblock line="398">
<description>Generates an OR Like clause</description>
<long-description></long-description>
<tag name="param" line="398" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="398" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="398" description="" type="string" variable="$pos">
<type>string</type>
</tag>
<tag name="return" line="398" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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="413" package="Query\Query">
<name>not_like</name>
<full_name>\Query_Builder::not_like()</full_name>
<docblock line="413">
<description>Generates a NOT LIKE clause</description>
<long-description></long-description>
<tag name="param" line="413" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="413" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="413" description="" type="string" variable="$pos">
<type>string</type>
</tag>
<tag name="return" line="413" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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="428" package="Query\Query">
<name>or_not_like</name>
<full_name>\Query_Builder::or_not_like()</full_name>
<docblock line="428">
<description>Generates a OR NOT LIKE clause</description>
<long-description></long-description>
<tag name="param" line="428" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="428" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="428" description="" type="string" variable="$pos">
<type>string</type>
</tag>
<tag name="return" line="428" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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="445" package="Query\Query">
<name>_having</name>
<full_name>\Query_Builder::_having()</full_name>
<docblock line="445">
<description>Simplify building having clauses</description>
<long-description></long-description>
<tag name="param" line="445" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="445" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="445" description="" type="string" variable="$conj">
<type>string</type>
</tag>
<tag name="return" line="445" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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="480" package="Query\Query">
<name>having</name>
<full_name>\Query_Builder::having()</full_name>
<docblock line="480">
<description>Generates a 'Having' clause</description>
<long-description></long-description>
<tag name="param" line="480" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="480" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="480" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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="494" package="Query\Query">
<name>or_having</name>
<full_name>\Query_Builder::or_having()</full_name>
<docblock line="494">
<description>Generates a 'Having' clause prefixed with 'OR'</description>
<long-description></long-description>
<tag name="param" line="494" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="494" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="494" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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="510" package="Query\Query">
<name>_where</name>
<full_name>\Query_Builder::_where()</full_name>
<docblock line="510">
<description>Do all the repeditive stuff for where/having type methods</description>
<long-description></long-description>
<tag name="param" line="510" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="510" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="510" 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="543" package="Query\Query">
<name>_where_string</name>
<full_name>\Query_Builder::_where_string()</full_name>
<docblock line="543">
<description>Simplify generating where string</description>
<long-description></long-description>
<tag name="param" line="543" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="543" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="543" description="" type="string" variable="$conj">
<type>string</type>
</tag>
<tag name="return" line="543" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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="598" package="Query\Query">
<name>_where_in</name>
<full_name>\Query_Builder::_where_in()</full_name>
<docblock line="598">
<description>Simplify where_in methods</description>
<long-description></long-description>
<tag name="param" line="598" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="598" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="598" 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="598" 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="598" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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="631" package="Query\Query">
<name>where</name>
<full_name>\Query_Builder::where()</full_name>
<docblock line="631">
<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="631" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="631" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="param" line="631" description="" type="mixed" variable="$escape">
<type>mixed</type>
</tag>
<tag name="return" line="631" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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="645" package="Query\Query">
<name>or_where</name>
<full_name>\Query_Builder::or_where()</full_name>
<docblock line="645">
<description>Where clause prefixed with "OR"</description>
<long-description></long-description>
<tag name="param" line="645" description="" type="string" variable="$key">
<type>string</type>
</tag>
<tag name="param" line="645" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="645" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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="659" package="Query\Query">
<name>where_in</name>
<full_name>\Query_Builder::where_in()</full_name>
<docblock line="659">
<description>Where clause with 'IN' statement</description>
<long-description></long-description>
<tag name="param" line="659" description="" type="mixed" variable="$field">
<type>mixed</type>
</tag>
<tag name="param" line="659" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="659" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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="673" package="Query\Query">
<name>or_where_in</name>
<full_name>\Query_Builder::or_where_in()</full_name>
<docblock line="673">
<description>Where in statement prefixed with "or"</description>
<long-description></long-description>
<tag name="param" line="673" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="673" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="673" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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="687" package="Query\Query">
<name>where_not_in</name>
<full_name>\Query_Builder::where_not_in()</full_name>
<docblock line="687">
<description>WHERE NOT IN (FOO) clause</description>
<long-description></long-description>
<tag name="param" line="687" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="687" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="687" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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="701" package="Query\Query">
<name>or_where_not_in</name>
<full_name>\Query_Builder::or_where_not_in()</full_name>
<docblock line="701">
<description>OR WHERE NOT IN (FOO) clause</description>
<long-description></long-description>
<tag name="param" line="701" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="701" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="701" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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="717" package="Query\Query">
<name>set</name>
<full_name>\Query_Builder::set()</full_name>
<docblock line="717">
<description>Sets values for inserts / updates / deletes</description>
<long-description></long-description>
<tag name="param" line="717" description="" type="mixed" variable="$key">
<type>mixed</type>
</tag>
<tag name="param" line="717" description="" type="mixed" variable="$val">
<type>mixed</type>
</tag>
<tag name="return" line="717" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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="756" package="Query\Query">
<name>join</name>
<full_name>\Query_Builder::join()</full_name>
<docblock line="756">
<description>Creates a join phrase in a compiled query</description>
<long-description></long-description>
<tag name="param" line="756" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="756" description="" type="string" variable="$condition">
<type>string</type>
</tag>
<tag name="param" line="756" description="" type="string" variable="$type">
<type>string</type>
</tag>
<tag name="return" line="756" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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="798" package="Query\Query">
<name>group_by</name>
<full_name>\Query_Builder::group_by()</full_name>
<docblock line="798">
<description>Group the results by the selected field(s)</description>
<long-description></long-description>
<tag name="param" line="798" description="" type="mixed" variable="$field">
<type>mixed</type>
</tag>
<tag name="return" line="798" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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="824" package="Query\Query">
<name>order_by</name>
<full_name>\Query_Builder::order_by()</full_name>
<docblock line="824">
<description>Order the results by the selected field(s)</description>
<long-description></long-description>
<tag name="param" line="824" description="" type="string" variable="$field">
<type>string</type>
</tag>
<tag name="param" line="824" description="" type="string" variable="$type">
<type>string</type>
</tag>
<tag name="return" line="824" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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="861" package="Query\Query">
<name>limit</name>
<full_name>\Query_Builder::limit()</full_name>
<docblock line="861">
<description>Set a limit on the current sql statement</description>
<long-description></long-description>
<tag name="param" line="861" description="" type="int" variable="$limit">
<type>int</type>
</tag>
<tag name="param" line="861" description="" type="int" variable="$offset">
<type>int</type>
</tag>
<tag name="return" line="861" 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="878" package="Query\Query">
<name>group_start</name>
<full_name>\Query_Builder::group_start()</full_name>
<docblock line="878">
<description>Adds a paren to the current query for query grouping</description>
<long-description></long-description>
<tag name="return" line="878" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="897" package="Query\Query">
<name>or_group_start</name>
<full_name>\Query_Builder::or_group_start()</full_name>
<docblock line="897">
<description>Adds a paren to the current query for query grouping,
prefixed with 'OR'</description>
<long-description></long-description>
<tag name="return" line="897" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="916" package="Query\Query">
<name>or_not_group_start</name>
<full_name>\Query_Builder::or_not_group_start()</full_name>
<docblock line="916">
<description>Adds a paren to the current query for query grouping,
prefixed with 'OR NOT'</description>
<long-description></long-description>
<tag name="return" line="916" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="934" package="Query\Query">
<name>group_end</name>
<full_name>\Query_Builder::group_end()</full_name>
<docblock line="934">
<description>Ends a query group</description>
<long-description></long-description>
<tag name="return" line="934" description="" type="\Query_Builder">
<type>\Query_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="958" package="Query\Query">
<name>get</name>
<full_name>\Query_Builder::get()</full_name>
<docblock line="958">
<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="958" description="" type="" variable="$table"/>
<tag name="param" line="958" description="" type="int" variable="$limit">
<type>int</type>
</tag>
<tag name="param" line="958" description="" type="int" variable="$offset">
<type>int</type>
</tag>
<tag name="return" line="958" description="" type="object">
<type>object</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="994" package="Query\Query">
<name>get_where</name>
<full_name>\Query_Builder::get_where()</full_name>
<docblock line="994">
<description>Convience method for get() with a where clause</description>
<long-description></long-description>
<tag name="param" line="994" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="994" description="" type="array" variable="$where">
<type>array</type>
</tag>
<tag name="param" line="994" description="" type="int" variable="$limit">
<type>int</type>
</tag>
<tag name="param" line="994" description="" type="int" variable="$offset">
<type>int</type>
</tag>
<tag name="return" line="994" description="" type="object">
<type>object</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="1011" package="Query\Query">
<name>count_all</name>
<full_name>\Query_Builder::count_all()</full_name>
<docblock line="1011">
<description>Retreive the number of rows in the selected table</description>
<long-description></long-description>
<tag name="param" line="1011" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="1011" 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="1027" package="Query\Query">
<name>count_all_results</name>
<full_name>\Query_Builder::count_all_results()</full_name>
<docblock line="1027">
<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="1027" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="1027" 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="1060" package="Query\Query">
<name>insert</name>
<full_name>\Query_Builder::insert()</full_name>
<docblock line="1060">
<description>Creates an insert clause, and executes it</description>
<long-description></long-description>
<tag name="param" line="1060" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1060" description="" type="mixed" variable="$data">
<type>mixed</type>
</tag>
<tag name="return" line="1060" description="" type="mixed">
<type>mixed</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="1080" package="Query\Query">
<name>insert_batch</name>
<full_name>\Query_Builder::insert_batch()</full_name>
<docblock line="1080">
<description>Create sql for batch insert</description>
<long-description></long-description>
<tag name="param" line="1080" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1080" description="" type="array" variable="$data">
<type>array</type>
</tag>
<tag name="return" line="1080" 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>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="1102" package="Query\Query">
<name>update</name>
<full_name>\Query_Builder::update()</full_name>
<docblock line="1102">
<description>Creates an update clause, and executes it</description>
<long-description></long-description>
<tag name="param" line="1102" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1102" description="" type="mixed" variable="$data">
<type>mixed</type>
</tag>
<tag name="return" line="1102" description="" type="mixed">
<type>mixed</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="1122" package="Query\Query">
<name>delete</name>
<full_name>\Query_Builder::delete()</full_name>
<docblock line="1122">
<description>Deletes data from a table</description>
<long-description></long-description>
<tag name="param" line="1122" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1122" description="" type="mixed" variable="$where">
<type>mixed</type>
</tag>
<tag name="return" line="1122" description="" type="mixed">
<type>mixed</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="1144" package="Query\Query">
<name>get_compiled_select</name>
<full_name>\Query_Builder::get_compiled_select()</full_name>
<docblock line="1144">
<description>Returns the generated 'select' sql query</description>
<long-description></long-description>
<tag name="param" line="1144" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1144" description="" type="bool" variable="$reset">
<type>bool</type>
</tag>
<tag name="return" line="1144" 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="1164" package="Query\Query">
<name>get_compiled_insert</name>
<full_name>\Query_Builder::get_compiled_insert()</full_name>
<docblock line="1164">
<description>Returns the generated 'insert' sql query</description>
<long-description></long-description>
<tag name="param" line="1164" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1164" description="" type="bool" variable="$reset">
<type>bool</type>
</tag>
<tag name="return" line="1164" 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="1178" package="Query\Query">
<name>get_compiled_update</name>
<full_name>\Query_Builder::get_compiled_update()</full_name>
<docblock line="1178">
<description>Returns the generated 'update' sql query</description>
<long-description></long-description>
<tag name="param" line="1178" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1178" description="" type="bool" variable="$reset">
<type>bool</type>
</tag>
<tag name="return" line="1178" 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="1192" package="Query\Query">
<name>get_compiled_delete</name>
<full_name>\Query_Builder::get_compiled_delete()</full_name>
<docblock line="1192">
<description>Returns the generated 'delete' sql query</description>
<long-description></long-description>
<tag name="param" line="1192" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1192" description="" type="bool" variable="$reset">
<type>bool</type>
</tag>
<tag name="return" line="1192" 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="protected" namespace="" line="1207" package="Query\Query">
<name>_get_compile</name>
<full_name>\Query_Builder::_get_compile()</full_name>
<docblock line="1207">
<description>Helper function for returning sql strings</description>
<long-description></long-description>
<tag name="param" line="1207" description="" type="string" variable="$type">
<type>string</type>
</tag>
<tag name="param" line="1207" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1207" description="" type="bool" variable="$reset">
<type>bool</type>
</tag>
<tag name="resturn" line="1207" 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="1229" package="Query\Query">
<name>reset_query</name>
<full_name>\Query_Builder::reset_query()</full_name>
<docblock line="1229">
<description>Clear out the class variables, so the next query can be run</description>
<long-description></long-description>
<tag name="return" line="1229" description="" type="void">
<type>void</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="protected" namespace="" line="1263" package="Query\Query">
<name>_run</name>
<full_name>\Query_Builder::_run()</full_name>
<docblock line="1263">
<description>Executes the compiled query</description>
<long-description></long-description>
<tag name="param" line="1263" description="" type="string" variable="$type">
<type>string</type>
</tag>
<tag name="param" line="1263" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="1263" description="" type="bool" variable="$simple">
<type>bool</type>
</tag>
<tag name="param" line="1263" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="param" line="1263" description="" type="mixed" variable="$vals">
<type>mixed</type>
</tag>
<tag name="return" line="1263" description="" type="mixed">
<type>mixed</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>$simple</name>
<default>FALSE</default>
<type>bool</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>mixed</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="1329" package="Query\Query">
<name>__call</name>
<full_name>\Query_Builder::__call()</full_name>
<docblock line="1329">
<description>Calls a function further down the inheritence chain</description>
<long-description></long-description>
<tag name="param" line="1329" description="" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="param" line="1329" description="" type="array" variable="$params">
<type>array</type>
</tag>
<tag name="return" line="1329" description="" type="mixed">
<type>mixed</type>
</tag>
<tag name="throws" line="1329" 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="1348" package="Query\Query">
<name>_compile</name>
<full_name>\Query_Builder::_compile()</full_name>
<docblock line="1348">
<description>String together the sql statements for sending to the db</description>
<long-description></long-description>
<tag name="param" line="1348" description="" type="string" variable="$type">
<type>string</type>
</tag>
<tag name="param" line="1348" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="1348" 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="95d175bd0f2aaee682c09c295aa8bf85" 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_PDO</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></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></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="114" package="Query\Drivers">
<name>query</name>
<full_name>\Firebird::query()</full_name>
<docblock line="114">
<description>Wrapper public function to better match PDO</description>
<long-description></long-description>
<tag name="param" line="114" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="return" line="114" description="" type="\Firebird">
<type>\Firebird</type>
</tag>
<tag name="throws" line="114" description="" type="\PDOException">
<type link="PDOException.html">\PDOException</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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="141" package="Query\Drivers">
<name>prepare</name>
<full_name>\Firebird::prepare()</full_name>
<docblock line="141">
<description>Emulate PDO prepare</description>
<long-description></long-description>
<tag name="param" line="141" description="" type="string" variable="$query">
<type>string</type>
</tag>
<tag name="param" line="141" description="" type="array" variable="$options">
<type>array</type>
</tag>
<tag name="return" line="141" description="" type="\Firebird">
<type>\Firebird</type>
</tag>
<tag name="throws" line="141" description="" type="\PDOException">
<type link="PDOException.html">\PDOException</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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>NULL</default>
<type>array</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="160" package="Query\Drivers">
<name>beginTransaction</name>
<full_name>\Firebird::beginTransaction()</full_name>
<docblock line="160">
<description>Start a database transaction</description>
<long-description></long-description>
<tag name="return" line="160" description="" type="bool">
<type>bool</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="172" package="Query\Drivers">
<name>commit</name>
<full_name>\Firebird::commit()</full_name>
<docblock line="172">
<description>Commit a database transaction</description>
<long-description></long-description>
<tag name="return" line="172" description="" type="bool">
<type>bool</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="184" package="Query\Drivers">
<name>rollBack</name>
<full_name>\Firebird::rollBack()</full_name>
<docblock line="184">
<description>Rollback a transaction</description>
<long-description></long-description>
<tag name="return" line="184" description="" type="bool">
<type>bool</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="198" package="Query\Drivers">
<name>prepare_execute</name>
<full_name>\Firebird::prepare_execute()</full_name>
<docblock line="198">
<description>Prepare and execute a query</description>
<long-description></long-description>
<tag name="param" line="198" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="param" line="198" description="" type="array" variable="$args">
<type>array</type>
</tag>
<tag name="return" line="198" description="" type="resource">
<type>resource</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="217" package="Query\Drivers">
<name>quote</name>
<full_name>\Firebird::quote()</full_name>
<docblock line="217">
<description>Method to emulate PDO-&gt;quote</description>
<long-description></long-description>
<tag name="param" line="217" description="" type="string" variable="$str">
<type>string</type>
</tag>
<tag name="param" line="217" description="" type="int" variable="$param_type">
<type>int</type>
</tag>
<tag name="return" line="217" 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>NULL</default>
<type>int</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="234" package="Query\Drivers">
<name>errorInfo</name>
<full_name>\Firebird::errorInfo()</full_name>
<docblock line="234">
<description>Method to emulate PDO-&gt;errorInfo / PDOStatement-&gt;errorInfo</description>
<long-description></long-description>
<tag name="return" line="234" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="249" package="Query\Drivers">
<name>errorCode</name>
<full_name>\Firebird::errorCode()</full_name>
<docblock line="249">
<description>Method to emulate PDO-&gt;errorCode</description>
<long-description></long-description>
<tag name="return" line="249" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="263" package="Query\Drivers">
<name>prepare_query</name>
<full_name>\Firebird::prepare_query()</full_name>
<docblock line="263">
<description>Bind a prepared query with arguments for executing</description>
<long-description></long-description>
<tag name="param" line="263" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="param" line="263" description="" type="array" variable="$params">
<type>array</type>
</tag>
<tag name="return" line="263" 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="279" package="Query\Drivers">
<name>insert_batch</name>
<full_name>\Firebird::insert_batch()</full_name>
<docblock line="279">
<description>Create sql for batch insert</description>
<long-description></long-description>
<tag name="param" line="279" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="279" description="" type="array" variable="$data">
<type>array</type>
</tag>
<tag name="return" line="279" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$data</name>
<default>array()</default>
<type>array</type>
</argument>
</method>
</class>
<source>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</source>
</file>
<file path="drivers/mysql/mysql_util.php" generated-path="drivers.mysql.mysql_util.html" hash="920c30d3b86de225559af7ce792490bb" 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="36" package="Query\Drivers">
<name>__construct</name>
<full_name>\MySQL_Util::__construct()</full_name>
<docblock line="36">
<description>Save a reference to the current connection object</description>
<long-description></long-description>
<tag name="param" line="36" description="" type="object" variable="$conn">
<type>object</type>
</tag>
<tag name="return" line="36" description="" type="void">
<type>void</type>
</tag>
</docblock>
<argument line="0" by_reference="true">
<name>$conn</name>
<default></default>
<type>object</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="53" package="Query\Drivers">
<name>create_table</name>
<full_name>\MySQL_Util::create_table()</full_name>
<docblock line="53">
<description>Convienience public function for creating a new MySQL table</description>
<long-description></long-description>
<tag name="param" line="53" description="" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="param" line="53" description="" type="array" variable="$columns">
<type>array</type>
</tag>
<tag name="param" line="53" description="" type="array" variable="$constraints">
<type>array</type>
</tag>
<tag name="param" line="53" description="" type="array" variable="$indexes">
<type>array</type>
</tag>
<tag name="return" line="53" 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="119" package="Query\Drivers">
<name>delete_table</name>
<full_name>\MySQL_Util::delete_table()</full_name>
<docblock line="119">
<description>Convience public function for droping a table</description>
<long-description></long-description>
<tag name="param" line="119" description="" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="return" line="119" 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="131" package="Query\Drivers">
<name>backup_structure</name>
<full_name>\MySQL_Util::backup_structure()</full_name>
<docblock line="131">
<description>Create an SQL backup file for the current database's structure</description>
<long-description></long-description>
<tag name="return" line="131" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="167" package="Query\Drivers">
<name>backup_data</name>
<full_name>\MySQL_Util::backup_data()</full_name>
<docblock line="167">
<description>Create an SQL backup file for the current database's data</description>
<long-description></long-description>
<tag name="param" line="167" description="" type="array" variable="$exclude">
<type>array</type>
</tag>
<tag name="return" line="167" 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/db_util.php" generated-path="classes.db_util.html" hash="507c02bef77ba35e2b8e164fc0c73077" 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\Query">
<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="Query"/>
</docblock>
<property static="false" visibility="private" line="27" namespace="" package="Query\Query">
<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\Query">
<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\Query">
<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="true" static="false" visibility="public" namespace="" line="67" package="Query\Query">
<name>create_table</name>
<full_name>\DB_Util::create_table()</full_name>
<docblock line="67">
<description>Get database-specific sql to create a new table</description>
<long-description></long-description>
<tag name="abstract" line="67" description=""/>
<tag name="param" line="67" description="" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="param" line="67" description="" type="array" variable="$columns">
<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>$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="true" static="false" visibility="public" namespace="" line="76" package="Query\Query">
<name>delete_table</name>
<full_name>\DB_Util::delete_table()</full_name>
<docblock line="76">
<description>Get database-specific sql to drop a table</description>
<long-description></long-description>
<tag name="abstract" line="76" description=""/>
<tag name="param" line="76" description="" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="return" line="76" 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="84" package="Query\Query">
<name>backup_structure</name>
<full_name>\DB_Util::backup_structure()</full_name>
<docblock line="84">
<description>Return an SQL file with the database table structure</description>
<long-description></long-description>
<tag name="abstract" line="84" description=""/>
<tag name="return" line="84" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="true" static="false" visibility="public" namespace="" line="92" package="Query\Query">
<name>backup_data</name>
<full_name>\DB_Util::backup_data()</full_name>
<docblock line="92">
<description>Return an SQL file with the database data as insert statements</description>
<long-description></long-description>
<tag name="abstract" line="92" description=""/>
<tag name="return" line="92" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
</class>
<source>eJy1VU1PGzEQPXt/xVTKIUFJtkWcSmkphVaq6AFo1ePKuzubddnYW38AEeK/d2zvJiQNElRpDhvLno8373nG7z60dZuke3sJ7MGFQ72ghV9/1ohxA06caErUkMIptzznBuFjbqzmhRVKwjlfoO68jlteXPMZMtbHgmPubK00Y9/FXNl6AV+n8JNrjTKcFqpdaDGrLfvUr2BYjGD/9Zt9mPi/g2DXCHkNjNXWtuZtms6ErV0+LdQ85TeC2wNCkq5yNqJAaTDak3lbi8ZYp2eoJDlN3XVaqBLTMuflpDMmxzRJ0hQmO/slPbM9X1A03BgosRJSyBmUPaEp0KJBKDTywOocibXSbPAKqxKNyzc304Sv5zk9yX5Y0cB9kjCPhJHjJVZI5BcIVoGtKaXzYpCLkhKjpCr/RStvnias1eKGW4SBNzhM2CrUFb9B4KD/irgZCSqloaEgGhwRTb7Bn6rSfN7bhPh9TpeTKlA5GcNkGR1Saa6ww2A3Sth9wtjA1sJM3vsdOOoQQsIeAsqdKvmo7DMZpeJNEzQkfqiwXrCN4gi0NxrE48cn1AN8AQOuZyZua6QbSsqLOyyf5oGyDrto4+jdcdG5e4OMWNaZ98pClmH8PmJr3CMa9UEO/w9tFO7V6vp/60nacZsttfmCdtlUE9NiISriz/xu/N0MzeVvrMTb2G8rtfrO2aad5HPcolyhGjeXZuuJv6xcSLvtVMgS73Bd9JiqU33ZxZvyxwKyAH0YYI2XMMZbkh9F3UfjjdT9Pon+TOpKrVoi7p9Ie1GJJTa4XuJobeZcxmBcwtXFOVSCGvGW3oIwd5bTNM7SOC+cfhLwi4DlNGxdmy2DDtfIexYsvwBuQNBroy3lJTHn2F2SXQH0SQK2B/+WnckSVAVlnjl6CKb02P8BQRxSYQ==</source>
</file>
<file path="classes/iquery_builder.php" generated-path="classes.iquery_builder.html" hash="961f4a0851f221cb23a4feaf12bd93c1" 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">
<name>iQuery_Builder</name>
<full_name>\iQuery_Builder</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"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="34" package="Query\Query">
<name>select</name>
<full_name>\iQuery_Builder::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="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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">
<name>select_max</name>
<full_name>\iQuery_Builder::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="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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">
<name>select_min</name>
<full_name>\iQuery_Builder::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="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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">
<name>select_avg</name>
<full_name>\iQuery_Builder::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="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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">
<name>select_sum</name>
<full_name>\iQuery_Builder::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="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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">
<name>distinct</name>
<full_name>\iQuery_Builder::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="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="96" package="Query\Query">
<name>explain</name>
<full_name>\iQuery_Builder::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="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="106" package="Query\Query">
<name>from</name>
<full_name>\iQuery_Builder::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="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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">
<name>like</name>
<full_name>\iQuery_Builder::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="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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">
<name>or_like</name>
<full_name>\iQuery_Builder::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="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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">
<name>not_like</name>
<full_name>\iQuery_Builder::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="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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">
<name>or_not_like</name>
<full_name>\iQuery_Builder::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="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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">
<name>having</name>
<full_name>\iQuery_Builder::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="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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">
<name>or_having</name>
<full_name>\iQuery_Builder::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="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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">
<name>where</name>
<full_name>\iQuery_Builder::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="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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">
<name>or_where</name>
<full_name>\iQuery_Builder::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="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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">
<name>where_in</name>
<full_name>\iQuery_Builder::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="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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">
<name>or_where_in</name>
<full_name>\iQuery_Builder::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="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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">
<name>where_not_in</name>
<full_name>\iQuery_Builder::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="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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">
<name>or_where_not_in</name>
<full_name>\iQuery_Builder::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="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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">
<name>set</name>
<full_name>\iQuery_Builder::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="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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">
<name>join</name>
<full_name>\iQuery_Builder::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="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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">
<name>group_by</name>
<full_name>\iQuery_Builder::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="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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">
<name>order_by</name>
<full_name>\iQuery_Builder::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="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</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">
<name>limit</name>
<full_name>\iQuery_Builder::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">
<name>group_start</name>
<full_name>\iQuery_Builder::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="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="329" package="Query\Query">
<name>or_group_start</name>
<full_name>\iQuery_Builder::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="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="339" package="Query\Query">
<name>or_not_group_start</name>
<full_name>\iQuery_Builder::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="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="348" package="Query\Query">
<name>group_end</name>
<full_name>\iQuery_Builder::group_end()</full_name>
<docblock line="348">
<description>Ends a query group</description>
<long-description></long-description>
<tag name="return" line="348" description="" type="\iQuery_Builder">
<type>\iQuery_Builder</type>
</tag>
<tag name="fluent" description="This method is part of a fluent interface and will return the same instance"/>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="363" package="Query\Query">
<name>get</name>
<full_name>\iQuery_Builder::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="object">
<type>object</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">
<name>get_where</name>
<full_name>\iQuery_Builder::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="object">
<type>object</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">
<name>count_all</name>
<full_name>\iQuery_Builder::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">
<name>count_all_results</name>
<full_name>\iQuery_Builder::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">
<name>insert</name>
<full_name>\iQuery_Builder::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="mixed">
<type>mixed</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">
<name>update</name>
<full_name>\iQuery_Builder::update()</full_name>
<docblock line="419">
<description>Creates an update clause, and executes it</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="mixed" variable="$data">
<type>mixed</type>
</tag>
<tag name="return" line="419" description="" type="mixed">
<type>mixed</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="430" package="Query\Query">
<name>delete</name>
<full_name>\iQuery_Builder::delete()</full_name>
<docblock line="430">
<description>Deletes data from a table</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="$where">
<type>mixed</type>
</tag>
<tag name="return" line="430" description="" type="mixed">
<type>mixed</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="443" package="Query\Query">
<name>get_compiled_select</name>
<full_name>\iQuery_Builder::get_compiled_select()</full_name>
<docblock line="443">
<description>Returns the generated 'select' sql query</description>
<long-description></long-description>
<tag name="param" line="443" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="443" description="" type="bool" variable="$reset">
<type>bool</type>
</tag>
<tag name="return" line="443" 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="454" package="Query\Query">
<name>get_compiled_insert</name>
<full_name>\iQuery_Builder::get_compiled_insert()</full_name>
<docblock line="454">
<description>Returns the generated 'insert' 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">
<name>get_compiled_update</name>
<full_name>\iQuery_Builder::get_compiled_update()</full_name>
<docblock line="465">
<description>Returns the generated 'update' 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">
<name>get_compiled_delete</name>
<full_name>\iQuery_Builder::get_compiled_delete()</full_name>
<docblock line="476">
<description>Returns the generated 'delete' 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">
<name>reset_query</name>
<full_name>\iQuery_Builder::reset_query()</full_name>
<docblock line="487">
<description>Clear out the class variables, so the next query can be run</description>
<long-description></long-description>
<tag name="return" line="487" description="" type="void">
<type>void</type>
</tag>
</docblock>
</method>
</interface>
<source>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</source>
</file>
<file path="drivers/sqlite/sqlite_util.php" generated-path="drivers.sqlite.sqlite_util.html" hash="704b1ceff2437038cf08205fb9cabba4" 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>\DB_Util</extends>
<name>SQLite_Util</name>
<full_name>\SQLite_Util</full_name>
<docblock line="22">
<description>SQLite-specific backup, import and creation methods</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>__construct</name>
<full_name>\SQLite_Util::__construct()</full_name>
<docblock line="30">
<description>Save a reference to the current connection object</description>
<long-description></long-description>
<tag name="param" line="30" description="" type="object" variable="$conn">
<type>object</type>
</tag>
<tag name="return" line="30" description="" type="void">
<type>void</type>
</tag>
</docblock>
<argument line="0" by_reference="true">
<name>$conn</name>
<default></default>
<type>object</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="46" package="Query\Drivers">
<name>create_table</name>
<full_name>\SQLite_Util::create_table()</full_name>
<docblock line="46">
<description>Convenience public function to create a new table</description>
<long-description></long-description>
<tag name="param" line="46" description="&lt;p&gt;//Name of the table&lt;/p&gt;" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="param" line="46" 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="46" description="&lt;p&gt;// column =&gt; constraint pairs&lt;/p&gt;" type="array" variable="$constraints">
<type>array</type>
</tag>
<tag name="param" line="46" description="&lt;p&gt;// column =&gt; index pairs&lt;/p&gt;" type="array" variable="$indexes">
<type>array</type>
</tag>
<tag name="return" line="46" 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="102" package="Query\Drivers">
<name>delete_table</name>
<full_name>\SQLite_Util::delete_table()</full_name>
<docblock line="102">
<description>SQL to drop the specified table</description>
<long-description></long-description>
<tag name="param" line="102" description="" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="return" line="102" 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="115" package="Query\Drivers">
<name>backup_data</name>
<full_name>\SQLite_Util::backup_data()</full_name>
<docblock line="115">
<description>Create an SQL backup file for the current database's data</description>
<long-description></long-description>
<tag name="param" line="115" description="" type="array" variable="$excluded">
<type>array</type>
</tag>
<tag name="return" line="115" 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="182" package="Query\Drivers">
<name>backup_structure</name>
<full_name>\SQLite_Util::backup_structure()</full_name>
<docblock line="182">
<description>Create an SQL backup file for the current database's structure</description>
<long-description></long-description>
<tag name="return" line="182" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
</class>
<source>eJy1WG1T2zgQ/uz8iq0nc7ZpiHudfiKlLYVwpcNBIen1ZqCTcWwlUXFk15KhuQ7//XYl+SUpLb0bygzElvb12dWzCs9f5ou8E25tdWALzkpWrPCBng8LxswCvC55mrACQjiIVDSNJIO9qVRFFCueCTiOVqywWq/yKL6K5sxxKlvwKirVIiscZ8yXmVqs4G0fPkRFwYTejbN8VfD5Qjn71RP4cQBPn/z+FLbp45mWS7m4AsdZKJXLnTCcc7Uop/04W4bRNY/UM4wkbHymPGZCMiOP4vmCp1KVxZxlApX65VUYZwkLk2mUbFthVAw7nTCE7Qf76VTIjs6OuWLbMmcxn/EYpghTmfeAL/OsUBCJBOKCRRrPJUO8ErmBKDTJyXJaLR4U/JoVUocep5GU1tPkveIpsC+KiUTCwWvz/rXTcSgghyKKrhlEULAZw1LEDFQGasEgLqk0CuJMCGYKnE0/4RNpaU2MqIiWdhW6JGjWC4YIC7jOeEILYcfJyymCC7NSGEuTCUpj55Sx8n/TmkHH+dpxHDSJTnd22gJmf9BxbjsOxv2gdXEaIPYzcc0E1xhsxouY6LIQUoLdAHZ/yjaBwHC5mENXREsGYXhCH9lMg1nLV7LY99GKMEvLpZAoXT1FkuxEuv2NEPZEmBVgBGD3BahVjhFGHMt9l0Wh9YUiqy2tZuO7ulwk7Avb0NOLbRVbXZvudwps0JrovH2NSK/OtndHrLt6yQ96G7FU67Y9rImJEdoFuzvAfqbGOGdZMY8E/4dh2FizSFhzxloCN8gWVW5czLJiqY+a0R7OYc3+Bb1R6B9rT0bQcTyqgUfw9Pv9Xr3aJPTtng5hYxmzcjAIFsULv9vqgMoxSXfJFQlS/g6f+VxORLlkBY/9So7gsQJOo2tUB7R6SwA592UXDH4gdWFyJmlfG4ZHu7t1pAG8NO5gBzyP7GiXGC48ArbM1cpvlzuoE2ql3zSuhUCnr9c38lsPD0NrAU8BGiWbuQ0F4X6bcVFVP2EzLrhCOTzcc2RaHF21cbkOyUaJbPdRkPqEdPMiy2WdURcjQX33a1fcgjuol/oIHJeSIaFphQrQgLBD6bVF1EQk3R+qt5PWRu7asFZahZUXGiKUGLSw+YMJVhDBEV3Jzylg0mYOVONoncowKBTCNPfPh3vjIYz3Xh8P4egQTk7HMPz7aDQewSVhgM1xe+mCr1PRSpgJjrsUx67v9sBtiCFoi7iBCdvSDS3rEfDQE6A1Cc+OiegTBNGgYIY00sa9dL/GjD8kxoSlbJ0YLbVZZe/g/PRdg6ZF0vX6Wrbvud6vGYStOWgHndCAmAsKzHjKmpawV4PE3gI9qR83AbJMzr7EaZmw5OcxMj4nZNOv1TcmgW5ZHJGQcqmoN6M01cGZ64hsOtQbDY+H+2NwCUAXDs9P/wQXt+h2tIykYgVhuklWldugda5tY8KHN8PzIXY3GcTWpo4/OvE9t1+3tdfzqK9rI33XC9z6uHULJjU9L7jcfvGZ7nM+WTf9j5tlqmgfn7ZfzJiKF3tp6r87ON3ZORyO999M9kaj030z9UqhKQFFzXs3K1VeqonN3Rt0GrAIHgJVF5IYrb7RNRRnvRO5FeupN0huWRCxKYsLj1DwPtrOvCc5DG/6aWIlfia99fzwnX4xnSNDRkV2A1yamvXoiqO4KM3I4zPwbS2tT+TIRsLaOYmmpqXNVKBcJExXgBNB0emmvSu2khX7zfAapMhtm1CraTEhSd+ejpZbS78cUynUBJXlxtWFIrHHjpwYQTwjuLBEU3JtUFYI6hJlN+3RSHBUsVxHacmkr0WME/JyVmboxOyRBcEY9idlTHNHS6Ejv8t3n2D/8jgrhdrVf60lXHxu1+n58WPt3wagI7jocn1JaN9T7LKZUpXMTtMkGFQjpMtnryza4sRSLXbg0cloeE7HbXz6Tf/hjPHqI4jnD09hM1pwP4C/9o7fD0fgt8R6JESZ9b1g4FmgqqZroGsXz8zPJq7WDcsqVpW3hW8dSeKPS3EpWlyBLwR1Yz+oiaKafY2BXzwC/xf3m69pZdGakP+B5Wttv2H2Q/y2ka6QouRKOzbfZfHe/KnE06c5RQdj6HvzSlITPr5+l+8floVJ784vJffzqr3Imp668HDF+9hMChKoEYLWxWlg2qY2EEAfL5vfXJkaZd05t/RvjaFIiM4sJKXiaT9f5P8Cp9Uvlg==</source>
</file>
<file path="drivers/pdo_firebird/pdo_firebird_driver.php" generated-path="drivers.pdo_firebird.pdo_firebird_driver.html" hash="290e55ac170ea6fe1aa6de4a65638ec1" 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_PDO</extends>
<name>PDO_Firebird</name>
<full_name>\PDO_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></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>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="41" package="Query\Drivers">
<name>__construct</name>
<full_name>\PDO_Firebird::__construct()</full_name>
<docblock line="41">
<description>Open the link to the database</description>
<long-description></long-description>
<tag name="param" line="41" description="" type="string" variable="$dsn">
<type>string</type>
</tag>
<tag name="param" line="41" description="" type="string" variable="$username">
<type>string</type>
</tag>
<tag name="param" line="41" description="" type="string" variable="$password">
<type>string</type>
</tag>
<tag name="param" line="41" description="" type="array" variable="$options">
<type>array</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$dsn</name>
<default></default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$username</name>
<default>'SYSDBA'</default>
<type>string</type>
</argument>
<argument line="0" by_reference="false">
<name>$password</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="55" package="Query\Drivers">
<name>truncate</name>
<full_name>\PDO_Firebird::truncate()</full_name>
<docblock line="55">
<description>Empty a database table</description>
<long-description></long-description>
<tag name="param" line="55" 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="71" package="Query\Drivers">
<name>insert_batch</name>
<full_name>\PDO_Firebird::insert_batch()</full_name>
<docblock line="71">
<description>Create sql for batch insert</description>
<long-description></long-description>
<tag name="param" line="71" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="param" line="71" description="" type="array" variable="$data">
<type>array</type>
</tag>
<tag name="return" line="71" 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>eJy1VU1P20AQPa9/xQhFcoKSuEWcQtPykXCo0tICVdWTtbYn8Tbx7rK7DkSI/95Zx44BQXuhucSenY83b96OP3zSuQ6i/f0A9uF7iWZDD/753CBuDXBailWGBiKYcMcTbhFOEusMT51QEmZ8g6aOOtY8XfIFMtbkgmNeulwZxq5FoVy+gc9D+MmNQVmdpkpvjFjkjp01T9BNe3Dw7v0BDPzfYeW3EnIJjOXOaTuKooVweZkMU1VEfC24OyQkUVtzJVKUFrf+5K5zsbKuNAtUkoKG5TJKVYZRlvBsUDtTYBQEUQSDN/sFDbPnwmAiTNYymK64tTVr3yYXg3njIawMHVhyW2EfrAKXC0tW4HBruNY0CDUnI8Lc+8egy4Q6gHkpq3nY4bNZQEuLLZPGODFijcZWTVdYPIp4hxPvHMrMwuQ0JjvcBwHzrTDKcolzpOmlCE5VOCjawU0lFbzDtHSYecfK+XjNCW/yG1Pn36OAaaMcvWEGHWrSYYHSHT1Kf6FRbtP6idclspq2Nq/mhhdEkxFyAZ3MypfMpUUjeYEvnWnq+VaZ7PEZyZJvoKN0RWQD+Cm/EMcpHTpTpq7rC/fbOuPw6tfV5PQk7Lf5x2FB/KBZ4sab69ww3hbr9noBuw8YE3PoUlKtbJ00bBQR9mA8HsP5yexq2qtapeDd6SgcepNnkFETROZo9BeEj4C1YHpHAXvwI3hb7e9GOi2025B+mylCJe7XZrk7fIF76kmmJJru1qvmjnDvhLsiffu70ngCrYiCSxoz69ibladuMp1Nr6dwfnnxBfaIvirVMNwLj7yTv26DjztpUkBtqhTe9Un+N19nBj1yD3euDCTcpTkIWlHG/ZO0Z1L2lG/NBmn/yTrgFXq3NeKqYE1xf5tj/FSt1Pl1vZakcrD2d592EyXzMc2t3e209vqyGsbXH7NZxeKD37hTmfmlpjMVNzFxVi2oIX2e/gDgg+/F</source>
</file>
<file path="drivers/pgsql/pgsql_util.php" generated-path="drivers.pgsql.pgsql_util.html" hash="f7872714f01a9f918d421481c12ab909" 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>\DB_Util</extends>
<name>PgSQL_Util</name>
<full_name>\PgSQL_Util</full_name>
<docblock line="22">
<description>Posgres-specific backup, import and creation methods</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>__construct</name>
<full_name>\PgSQL_Util::__construct()</full_name>
<docblock line="30">
<description>Save a reference to the current connection object</description>
<long-description></long-description>
<tag name="param" line="30" description="" type="object" variable="$conn">
<type>object</type>
</tag>
<tag name="return" line="30" description="" type="void">
<type>void</type>
</tag>
</docblock>
<argument line="0" by_reference="true">
<name>$conn</name>
<default></default>
<type>object</type>
</argument>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="44" package="Query\Drivers">
<name>create_table</name>
<full_name>\PgSQL_Util::create_table()</full_name>
<docblock line="44">
<description>Database-specific method to create a new table</description>
<long-description></long-description>
<tag name="param" line="44" description="" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="param" line="44" description="" type="array" variable="$columns">
<type>array</type>
</tag>
<tag name="param" line="44" description="" type="array" variable="$constraints">
<type>array</type>
</tag>
<tag name="param" line="44" description="" type="array" variable="$indexes">
<type>array</type>
</tag>
<tag name="return" line="44" 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="100" package="Query\Drivers">
<name>delete_table</name>
<full_name>\PgSQL_Util::delete_table()</full_name>
<docblock line="100">
<description>Database-specific SQL for dropping a table</description>
<long-description></long-description>
<tag name="param" line="100" description="" type="string" variable="$name">
<type>string</type>
</tag>
<tag name="return" line="100" 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="112" package="Query\Drivers">
<name>backup_structure</name>
<full_name>\PgSQL_Util::backup_structure()</full_name>
<docblock line="112">
<description>Create an SQL backup file for the current database's structure</description>
<long-description></long-description>
<tag name="return" line="112" 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>backup_data</name>
<full_name>\PgSQL_Util::backup_data()</full_name>
<docblock line="126">
<description>Create an SQL backup file for the current database's data</description>
<long-description></long-description>
<tag name="param" line="126" description="" type="array" variable="$exclude">
<type>array</type>
</tag>
<tag name="return" line="126" 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>
</class>
<markers>
<todo line="114">Implement Backup function</todo>
</markers>
<source>eJzNV21v2zYQ/iz9iqsRTFLh2G3RT3HTNondrYUXp7G7fUgKg5Zom4tMqSKV1Cvy33dHUi92s64DOmABjEjHe3nu4fGOevEqX+d+//FjHx7D+5IXW3yg5zcF51YAp6VIE15AH4ZMswVTHE4WShcs1iKTMGZbXjir1zmLb9iKe17lC16zUq+zwvNmYpPp9Rbe9eB3VhRcmtU4y7eFWK21d1Y9QRhH8OzJ02dwSP+eG71UyBvwvLXWuTrq91dCr8tFL842fXYrmH6OSPpNzFTEXCpu9VE9X4tU6bJY8UyiUa+86cdZwvvJgiWHThkN+77f78PhD/vzK2YvMrUquDpUOY/FUsSwQJ7KvAtik2eFBiYTiAvODKEbjoQlao9SaLJT5aISDgtxywtlsMcpUwouVtP34/kHLVLgnzWXiYLhqX3/4vseAfLQyZTdcmBQ8CXHrYg56Az0mkNc0tZoiDMpud3gbPEHPpGVsURABds4KRyQopUXHBmWcJuJhAR938vLBZILy1JaT/M5amPllLEOfzKWke998T0PXWLQo6O2gl0f+N697zW4qxJsqLR0EX7DIGUl+R2gWsr3QaNrIVdwINmGt+VYj2xLuaTlRqoHVwgWE1I/tCpkwj9ztUODDfU3RFikc4MxNGi6dfTuAzGPjSiMunsRK7mj0bmYW6VjcKsD3HcPC/uSZ8WKSfEnB3SaYdU5d9ZbAnd4qsD6QNkyKzamIq31aAU7/q/ojaB/rCNZRc8L9DbnARy/hF6v162lTUJfrxkIe2LMykMQnMXrsGIHmIIqMGkfUChSpPw9sQyFmstywwsRh5Ue0eMUvMbWmg5Iek8Eef+UXTT4htaVzZm0Q+MYHh0f10gjeGXDwREEAfkxIREuPAK+yfU2bG93VCfUSr9erSgw6Rv5Xn678BBai3gCaI1c5g4K0v0uE7La/YQvhRQa9fBgrfCEYYuvnatdSva2yFUfgZQGYl5kuaozOkAkaN/5ciDvoTOoRT0kTijF8eAbg4rQiLhD7R0hWiKTnW+at5M2Th5acF5aG6uuDEWoMWhx8zOXvKDmQj1SfUoBk7b9sura2dK8u7aDoFAJ0zy7HJ3MRjA7OR2P4JqyxnK4v+5AaMAbNcSOcyDFgRR2utBpWkHUVulEFqjrLyQ2zdH3fvDM+kavxdFiMk+QyZw6KfvePvs9XTHhKd/tiq6vOeNgeDm5cFR2gp7R6AWd4D+m4cyNFWnSt5MbliLlTRG4oZk4wgIFdoiVRYua76HAep/X1qFjAHObTYYTeIt1wjcU69ThcJYtlv6XfNDjfpW4WcY/x2mZ/Is6cSSRy7Cy3p+EpoiU6fJroQ5fYg+zhaVM07KUvhGpxottVurm7CrYZiUkmQw03DGp99u0i9e06CaUgTBPxHIZOmG3zi6qu8kBhstLPbcNgnarajEWBaVlmKSmWl++mi7rwlF/1a2uar1NR+PR2Yzu75eTX+mQII8btIncOUHNok3LJ7pUhmTtphvGmzsNurC+XHIdr0/SNLwYTo6O3oxmZ7/MT6bTyZnVpx9iHxq6WJJU10hTDqLVEkEoy6Ad03jHz0qJzdrFi+AFPI3o1qmFLHnt26E9/zAe2y6Nwc7ZwlaZHVXUBRQstoBbrKnr0NoN36qqJS9FoTQU2V27y6PT13a/SLXGcfXkY+TGgcBvgkLP0U7tXaUIhDsE5N8qYsmigI6m2hncFaG0X+irParxta6aW5aWWJtGxQahKO/LDIPYNfIgOU/wnobJ0hz82suG5aFF+pPZ4C4En8hFgDdH5/pBm4DKJKh1/Fpr7jo5ltbb8+nocgZvz2eTvcLCWRb0qgkWdLqdoDXCcD2C307GH0ZTCFtq3SpcL4gGwcBvA2u2e2cb7GRuULXvbk3dNsbtk0YD9Fpey06NAF9p1Lb8Rz2S1Qe1GrSNF9NY7+kbcYQfbFhe+Qql8xI/rnr0Hf0XbM9qSQ==</source>
</file>
<file path="drivers/pgsql/pgsql_sql.php" generated-path="drivers.pgsql.pgsql_sql.html" hash="459fc290a5aebe50dcfe2f1ad15390ee" 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/>
<implements>\iDB_SQL</implements>
<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="31" package="Query\Drivers">
<name>limit</name>
<full_name>\PgSQL_SQL::limit()</full_name>
<docblock line="31">
<description>Limit clause</description>
<long-description></long-description>
<tag name="param" line="31" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="param" line="31" description="" type="int" variable="$limit">
<type>int</type>
</tag>
<tag name="param" line="31" description="" type="int" variable="$offset">
<type>int</type>
</tag>
<tag name="return" line="31" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$sql</name>
<default></default>
<type>string</type>
</argument>
<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="51" package="Query\Drivers">
<name>explain</name>
<full_name>\PgSQL_SQL::explain()</full_name>
<docblock line="51">
<description>Get the query plan for the sql query</description>
<long-description></long-description>
<tag name="param" line="51" description="" type="string" variable="$sql">
<type>string</type>
</tag>
<tag name="return" line="51" 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="63" package="Query\Drivers">
<name>random</name>
<full_name>\PgSQL_SQL::random()</full_name>
<docblock line="63">
<description>Random ordering keyword</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="75" package="Query\Drivers">
<name>db_list</name>
<full_name>\PgSQL_SQL::db_list()</full_name>
<docblock line="75">
<description>Returns sql to list other databases</description>
<long-description></long-description>
<tag name="return" line="75" 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>table_list</name>
<full_name>\PgSQL_SQL::table_list()</full_name>
<docblock line="91">
<description>Returns sql to list tables</description>
<long-description></long-description>
<tag name="return" line="91" 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>system_table_list</name>
<full_name>\PgSQL_SQL::system_table_list()</full_name>
<docblock line="109">
<description>Returns sql to list system tables</description>
<long-description></long-description>
<tag name="return" line="109" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="127" package="Query\Drivers">
<name>view_list</name>
<full_name>\PgSQL_SQL::view_list()</full_name>
<docblock line="127">
<description>Returns sql to list views</description>
<long-description></long-description>
<tag name="return" line="127" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="145" package="Query\Drivers">
<name>trigger_list</name>
<full_name>\PgSQL_SQL::trigger_list()</full_name>
<docblock line="145">
<description>Returns sql to list triggers</description>
<long-description></long-description>
<tag name="return" line="145" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="162" package="Query\Drivers">
<name>function_list</name>
<full_name>\PgSQL_SQL::function_list()</full_name>
<docblock line="162">
<description>Return sql to list functions</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>procedure_list</name>
<full_name>\PgSQL_SQL::procedure_list()</full_name>
<docblock line="174">
<description>Return sql to list stored procedures</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="192" package="Query\Drivers">
<name>sequence_list</name>
<full_name>\PgSQL_SQL::sequence_list()</full_name>
<docblock line="192">
<description>Return sql to list sequences</description>
<long-description></long-description>
<tag name="return" line="192" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="210" package="Query\Drivers">
<name>column_list</name>
<full_name>\PgSQL_SQL::column_list()</full_name>
<docblock line="210">
<description>Return sql to list columns of the specified table</description>
<long-description></long-description>
<tag name="param" line="210" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="210" 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="233" package="Query\Drivers">
<name>type_list</name>
<full_name>\PgSQL_SQL::type_list()</full_name>
<docblock line="233">
<description>SQL to show list of field types</description>
<long-description></long-description>
<tag name="return" line="233" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
</class>
<source>eJzVWG1T4zYQ/mz/im3mZhyYEN/d3KceTJuA6dEJhEvSXvulHsVWbA227JNkuAylv70rWc4bvZIwHLR8Qaz32dU++yKJwx/KtHT9/X0X9uFjRcUcF3p9KiitBdCvWBZTAT6cEEWmRFLoTaUSJFKs4DAgcyos6kdSqbQQ4DgTlhcqncPPXfhEhKDcfI6Kci5YkirnuFlBO9qDt6/fvIUD/eud0csYv0IjqVKl/N73E6bSatqNitwn14yod+jXb3artSPKcVdGH9XLlGVSVSKhBUdQt7ryoyKmfjwl8YFVRqDvur4PB0/24zY8XhZSJYKOPw5AljRiswhw3VBUkuiKJBSW+5fVtBGeCHZNhTS7izIiJVwmiA21LZaXGc0pVxLYSd+Ibl3X0U4dNDNgOVOAoAqjQ4ERojdBcsBsMZ7AK/k5WxUzruBVpnH3pMVsJqkVC4pkcmtEi3zXKaspMgmzitdVYKy0tYOONdlpjByd9gbjYM91bl3H0RrQPYIWDM7OzyZwWyvftd5jKA6btZkMeZVTwaK2xe8h1GBXwMPT03Gg0bWKhjvOnTZhN6tVUXbnOsjQk2bZWVL+E1WgUgqfTZ+UGeEww+rXIr1TI34wFduwS7+gccYNv5ZIC2sFv10OemcX8Gsw6g/HAVKCOoYPTccTF/gi8hHhcZFDIXAw6HCu6PwG/1gGu01Uwhhprwfkwah3cTI8b+953zoG41CaVKkCK1gqwJmFky62c07uFk88DbWRjYAODw9192P5joNBcDyBFprnJKctOB0Nz6FVJmHjsKXVPn0IRsGK1sVwApjgtqcoTgCi6Guvs1i/8XR3OMPRSTCC/u8rsN742EXHL0AixpLtyp3BbEdfrWqC1OKaRMax83KibYUySmlOWt1aU66SWmPVvESCjsDr97BjJr3+IPC0EhZeo2JtWPL1R6ftYaYizFRWJF4HvPsuvb33L0S5nEusiEcxX0PD/2oC/gfkXzN6syPpGvKvZMOCba26MS6Mw1VWawZWx8XWpC1oX/r57i/w/kCktz5ZlgovOFrwzpjoC9Juw6VGbVXd+w+VtN3BWlFb+48cGs/G5RqVDTv3ubz4ZTD4CpPN4p+o1LDnD0OqQtAYSlFENK7ErtNvgdtu9ImiUoxvN/ys7nqjmvcAix5dKoshiRM0rGIV2pbFWWqr0Hu+MbieCIr3XR7tfPxY2Hb8R5pXmm3Qr3nTj6WWVlhh22pfMR6b02a8MdEaS8860NZIi4qsynHGFbP61VCXB9azOQS/9nZYfNyO4tpJTXCNfYBmvMkzTrKwLCTTFjqmPq0ZzVgt0LdWc5SvfY/pjFSZqmXmNZdl2qdVSon+xwEOy5x8YXmVhxnliUrrr/blF5YCeZDoeZHj+83Qtdwt8728l+hk39ah3q3nfDO0ZbN8y4eifqtjymVa3Nh3xgwwzRnmGenb9TTTrb/dRW1ebtwc7HjBvsA/zC1s9Rhr1JsLwJ+htzpwFre26UYfNcAFl3eu7wc81mGWCdY7Jpuzslum5d+97/A0</source>
</file>
<file path="drivers/pdo_firebird/pdo_firebird_sql.php" generated-path="drivers.pdo_firebird.pdo_firebird_sql.html" hash="77acfb48bfa0f8c9b5dfd1a4ac005805" 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>\Firebird_SQL</extends>
<name>PDO_Firebird_SQL</name>
<full_name>\PDO_Firebird_SQL</full_name>
<docblock line="24">
<description>Firebird Specific SQL</description>
<long-description></long-description>
<tag name="package" line="24" description="Query"/>
<tag name="subpackage" line="24" description="Drivers"/>
</docblock>
</class>
<source>eJytUU1LAzEQPe/+irn1A7rR0pMKVl0LSkFrBY8hm0w3odskzUexiP/d9GMt9mwuebx58zJ5c3Nrpc1Jv59DH2YR3TaBHZ44xAMB91E1Ah0QKFlgFfMId5UPjvGgjIYp26I7do0t40tWY5a1XjBmMUjjsuxdrUyQW3gu4IM5h3pf5cZunaplyB5aBF3eg+HF5RAGu2u01zVKLyHLZAjWXxFSqyBjVXCzImyjWBilScjpzUZx1B4P+iS3UjU+RFej0ampiEvCjUAiKiYGR3FqJHlOCAz+7eS5w3VUDqnRHMEhaywLsktp+fRGKRTQIUVBFklRKSd+AfXrpkiL6fSu83Y5k2MN5ha5WigO89n0LHY4JeBj1ZKlUxt0fv8/3jDv4bV8oa0fTTaAnwG18PCH/PpOaTxqAWYBVhh6Pt0PS9urWQ==</source>
</file>
<file path="drivers/mysql/mysql_sql.php" generated-path="drivers.mysql.mysql_sql.html" hash="858c825aff246cb97b143e0aa5d9792f" 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/>
<implements>\iDB_SQL</implements>
<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/imlUCYgSfK36qXfR1QEn4WQgxUbpSZXwYi94Fb91d52chfjvnbUNgRRyQSpKvmQZz8zO8+zsM/Zff2dhphunpzqcwtec8gIXan3FKa0McJmzKKAcDOgSSaZEUDCnQnLiS5YmYJOC8jrqS0b8ezKnmrbKBV9ILsOUa5rL4lSGBfzThjvCOU3Kp36aFZzNQ6l1Vito+i34+MeHj3Cu/n0q/SKW3IOmhVJm4rNhzJkM82nbT2ODPDAiP2ElxtOeEfNpImjlj+5ZyCIhcz6naYJB7fze8NOAGsGUBOe1MwYaum4YcP7b/vQVs/3C+WqDyKjPZj7g+hlf8FS6yKcrY5ezB8pFWZgfESGqPBOVi8VZRGOaSAGse1maFrquqf00TGOzmEnAoByBoaE04m6cxIBHx5I5vBc/ok0zSyS8j1TcL9Z0NhO0NnOKPCZ1EmUydC3Lp0gizPKkaokyS1NtcFanPFslubgybcdq6dpC1zQ2gya8AyYmSR5Tzvxm7dVCh9JDq7dTudonYPf6PRcWVc7lyZ/osUTUe7yqXMuzrQDl/5sPec36NZUgQwo/ynuTRSSBWcpLE1ZWmf/3NF5DMP0Pk7OkpLjmsg47sb7d2mZvANY31xp0rS6CR6ejQx+RJEhjSDkqhcJzT4tH/PGE9jWweJmkuY2oASNz0G22GsdGUG4nypOSKfawkICChcIX1LInDkMTTCcqyTM4J87N8A66pmtemo7lwN2NNbLAW0mrB+8uGizBtomJyjIRfkhj0jj6+e1AjxVFm6C3G3bFyusJKfNVnKyjLxqNbTGgcSaLp+etFmwRh7TZyNrVaNgHb7F2W3pI0EbPbPgeu2+GqNGcBQFNUCxrpS/V+rBuEYWQNJ5scPTsGjiWbXVc8EpUk4HZt7yahl/bxWtXbo6nNLRusSrQ6dxYfdO7+L6jy7433uKSPTD6eCBZKuRFkioaExLTF0kqt/beAjSim8/VcD8Idx21G3rZ8qPe9bU1OnrTj+piNxCtijwQ0mqxH9PVeNBxe8MBOK7pjt8CmpAppwFkPPVpkPNDB8E6bj/G29GwY3XHeE3fDiTF95PE3wFuMLbtfapVB+1CpsKODENpLdYvwvSxHtgzmDEaBSCL7NBjUiG7J3YlKt2e4/YGSl3U9J64/96+rMCdoT3uDxzv2KN7kwQshKdVIUCmaY7fAGmUxyg+OJtINYH3DfT1w9fRVSWux3kZu+tF5wqbAGomKrIWlXP9RrrELy4rCdTBxQW240S9wuM36U/hTd8B</source>
</file>
<file path="drivers/firebird/firebird_sql.php" generated-path="drivers.firebird.firebird_sql.html" hash="617ad88d71fd0da1a0f593d3a9b9d6d2" 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/>
<implements>\iDB_SQL</implements>
<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="9f98bf0c3729b152665c980e63399dc3" 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>\DB_PDO</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="38" package="Query\Drivers">
<name>__construct</name>
<full_name>\SQLite::__construct()</full_name>
<docblock line="38">
<description>Open SQLite Database</description>
<long-description></long-description>
<tag name="param" line="38" description="" type="string" variable="$dsn">
<type>string</type>
</tag>
<tag name="param" line="38" description="" type="string" variable="$user">
<type>string</type>
</tag>
<tag name="param" line="38" description="" type="string" variable="$pass">
<type>string</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>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="51" package="Query\Drivers">
<name>truncate</name>
<full_name>\SQLite::truncate()</full_name>
<docblock line="51">
<description>Empty a table</description>
<long-description></long-description>
<tag name="param" line="51" 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="69" package="Query\Drivers">
<name>get_tables</name>
<full_name>\SQLite::get_tables()</full_name>
<docblock line="69">
<description>List tables for the current database</description>
<long-description></long-description>
<tag name="return" line="69" 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="array">
<type>array</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>eJy1lt9v2zYQx5+lv+IQGLAc2NYa9MldsqS2g6LwkjV2sUeVkmiLiEQy5CmoFuR/35GS7DRLNgxI/WKBul/83JdH/fqbLnQYHx+HcAxfam4aenDPl4bzdgE+1qLMuYEYFgxZyiyHi9SiYRkKJWHFGm46r3PNslu240HQx4JzVmOhTBBsRKWwaODzFP5kxnDp32ZKN0bsCgzm/RNE2QhOfnl3AhP3997blULeQhAUiNrO4ngnsKjTaaaqmN0Lhu+pkviQsxQZl5a39mSuC1FarM2OK0lO0/o2zlTO4zxl+aQzJsc4DOMYJm/2C3uy6y8rgRys5pnYigyykln7jBkcyrd12i8ujLjnxvrivFcfi39HLnMLi4/JH4treAjDwCULyP+GbznxzTigAiw4kB+SA89q5DnYuxLufC4y9g7n98wARVkjQ15xiW41DgNtFPLM+Qxs/+rDk0TXmsu+nl4bh6CaGVYBCUXIHQxyK19ari2J54V17QB1VdQptQi2tWwFlySZkmRXZxi5sOM2yunV19Vq3Hr651EYPARhEFBLF+srEBasqHTZwDciQCXPYs2wiFGRDL6RHRVA+5vNnsY/6kwfXKLHoy5Vl2X0IQweHY631cwe77LS2AADAlu+ynX/8gVStAeZUd+i1soBaXl0PSuYpfCbm69X84vNEpRGUYm/mPMdt4ZpjSAV2FprZRC2ynhB0dGvWQl0/Com8ynZDpyqTmG4WK6WFOry5vp3OBpO28TT4dHQ6SYYYCHs5GwvJvLolrwgIxdl5C0Np+Mq4bnDTya+EnRQfMl2v9esdsMKIf+HwLsaK/Gd5690YMcxaeNFHf1BF/4UaAiyJnIi6un1u70rJ2feLCmpoKglMjDe6yVee1x5mmxFidxEznpytuWYFRdlGdHhns0ul5v5p+Rivb6ej8YwlKziw5+tYU/UNpba97/BekD/ArYN+4xvHHfiVpKOulO4y9Ue46SiQUg3WXdm3KaxYOhGg9oCkw3QgCCdM5qd0wPVtlHDH2J04IK3Jhd4dOA5zA1n6Gv3zFJGzQRBV5XB/5wG/QtfO01fYvwD29bhFbhtjsQn7GbHuI1x2on2MEo2JEcHUCqEe/e5wLSmYM6nv362wvBUmPxJp3u0bk57kI908y5l7vrQcc79zTel75O/AWGBcq4=</source>
</file>
<file path="drivers/sqlite/sqlite_sql.php" generated-path="drivers.sqlite.sqlite_sql.html" hash="bd3bfdf8bad15d71014b8e48ccc5e271" 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/>
<implements>\iDB_SQL</implements>
<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="32" package="Query\Drivers">
<name>limit</name>
<full_name>\SQLite_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>\SQLite_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>\SQLite_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>\SQLite_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="NULL">
<type>NULL</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="86" package="Query\Drivers">
<name>table_list</name>
<full_name>\SQLite_SQL::table_list()</full_name>
<docblock line="86">
<description>Returns sql to list tables</description>
<long-description></long-description>
<tag name="return" line="86" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="103" package="Query\Drivers">
<name>system_table_list</name>
<full_name>\SQLite_SQL::system_table_list()</full_name>
<docblock line="103">
<description>Overridden in SQLite class</description>
<long-description></long-description>
<tag name="return" line="103" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="115" package="Query\Drivers">
<name>view_list</name>
<full_name>\SQLite_SQL::view_list()</full_name>
<docblock line="115">
<description>Returns sql to list views</description>
<long-description></long-description>
<tag name="return" line="115" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="129" package="Query\Drivers">
<name>trigger_list</name>
<full_name>\SQLite_SQL::trigger_list()</full_name>
<docblock line="129">
<description>Returns sql to list triggers</description>
<long-description></long-description>
<tag name="return" line="129" description="" type="NULL">
<type>NULL</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="141" package="Query\Drivers">
<name>function_list</name>
<full_name>\SQLite_SQL::function_list()</full_name>
<docblock line="141">
<description>Return sql to list functions</description>
<long-description></long-description>
<tag name="return" line="141" description="" type="NULL">
<type>NULL</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="153" package="Query\Drivers">
<name>procedure_list</name>
<full_name>\SQLite_SQL::procedure_list()</full_name>
<docblock line="153">
<description>Return sql to list stored procedures</description>
<long-description></long-description>
<tag name="return" line="153" description="" type="NULL">
<type>NULL</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="165" package="Query\Drivers">
<name>sequence_list</name>
<full_name>\SQLite_SQL::sequence_list()</full_name>
<docblock line="165">
<description>Return sql to list sequences</description>
<long-description></long-description>
<tag name="return" line="165" description="" type="NULL">
<type>NULL</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="177" package="Query\Drivers">
<name>type_list</name>
<full_name>\SQLite_SQL::type_list()</full_name>
<docblock line="177">
<description>SQL to show list of field types</description>
<long-description></long-description>
<tag name="return" line="177" description="" type="array">
<type>array</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="190" package="Query\Drivers">
<name>column_list</name>
<full_name>\SQLite_SQL::column_list()</full_name>
<docblock line="190">
<description>SQL to show infromation about columns in a table</description>
<long-description></long-description>
<tag name="param" line="190" description="" type="string" variable="$table">
<type>string</type>
</tag>
<tag name="return" line="190" description="" type="string">
<type>string</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$table</name>
<default></default>
<type>string</type>
</argument>
</method>
</class>
<source>eJzNV01v2zgQPUu/YioUkB0k1m7RUzfB1o6VNAvFbmQXbU8BLVE2EYlUSSpZI/B/3yEl1fmwuzGQtPVF9Hje47wZcTg+/LtclG6wt+fCHlxUVC5xYdYnktLaAIOK5SmVEMCQaDIjikJ/prQkiWaCQ0SWVDao9yVJrsicOk7LBe9JpRdCOs6UFUIvlvBPDz4TKSm3vyaiXEo2X2jnuF1BJ+nCmz/+fAMH5vHW+uWMX4HjLLQu1bsgmDO9qGa9RBQBuWZEv8VIgvWeOUsoV7T2R/dywXKlKzmngiOoV10FiUhpkM5IetA4IzBw3SCAg2f7uG1mJxcR0xQmJU1YxhLz/UHGYB28qmatcSjZNZXKhpbkRKmG6RIfwIoypwXlWgEbDqzp1nUds6WDPBErmAZEVagNDdaI20lSAFaP8Tm8Vt/yu2bGNbzODe6RVWSZoo1ZUkwlb0iMKXCdspphHiGreP1WWJaO2WC/odxvSY5O+tEk7LrOres4LIMOvAKmLnlVUMmSTuPVRQfr4TTbGa6eB9HZ+dkUbmvOlfcXeqxQ9Ravmmu1fw+wch1M07MW2lnn/ZRq0AsK3+zhKXPCIRPSmjC22vy/9XhKium/SM64TXKTzQbmhV8+Rv2zEVx8CuOvgOsRJgDdGvnPrX4tPiY8FQUIiQ3DKLqiyxv8stb7FGHSknTua/Ih7o+G4/NO13+ZEt4RYXdUtlxa4KusNGDrwhaYNg1QPRI0+hRFW+Sks0tD8UCPAbx0MTbowPjzDeH/sB4Ws0nD4eGh6WR4RidhFB5PweOkoJ4xnMTjc/BwZ9OtCqI0ldb++UMYh+DpZUm9I98y+8Y+jodhDIOvDQUMw8mxi+QvnKIxtlfJ0pRybHNtm7addrcUqSUqLC63ZuoXVfua0ZsdlRjIDrWGTYWGu1WGI/ANqf8TyrnxjcehYm4u0R2ObIP5pZW8J6KNbCcV7eL3kaG0kDSFUoqEppXcrY9+R/1Geihe5zzZTUcL+qGMl5xQzKSICtRC3DSXWwYZo3kK5sA+1oLTOlluOymI2CTEYjr+2Wganoaxvw9+HPYj85yGX6bmOYjGA7/7U8UynklREBs4mYkKx2ORVwU2DGz+pL7nto1m3398WhutievM1NgH48zHuH963m/uVgxMdDy/V3v2fK8ZctwV/iEJeWoq1LRYM9/if7b/AKapibw=</source>
</file>
<file path="drivers/pgsql/pgsql_driver.php" generated-path="drivers.pgsql.pgsql_driver.html" hash="93943fde43357e04eea8849c983ad64c" 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>\DB_PDO</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>eJy1VF1v2jAUfXZ+xR1iClSFbFWfKGylELZujH7A1JdJkXFMYjXYqe10Q1X/+66TUNqq3VOHImH7nvt1zrX7n/M094K9PQ/24KLgeoMLt55ozqsDOClEFnMNAYyppUtqOAyXxmrKrFASpnTDde11nFN2TRNOyDYWHNPCpkoTshBrZdMNfOvCFdWay9LKVL7RIkktGW1X0GJtOPjw8QA67u+wxGVCXgMhqbW56QVBImxaLLtMrQN6K6g9xEqCXc5MMC4Nr/AIz1ORGVvohCuJTt3iOmAq5kG8pHGnBqNj4HlBAJ03+3lbZs+VsYnm84spmJwzsWLAMmrMM9pg14EpltvDsRa3XJuyvtILzhMXif+xXMYGxifR+fgM7jyPuHQE3UdKSs4sWAXUJa9zx7V+DlPiMLGma0AxhUygGRv50nFhuJZ0zV+y5VjPb6XjxzZUl24Amip3A2KcKfBIXiyRaVgVspqbKGJotLpgtuUy7+8SDWSRZfu74Nt9HXBQJmi12x658wgRK2hhnFyZOo6fJ+Ym89swGAxgMpzOw3bZGwxqU8/vuv0ROuOHRXNpe71/FPSoll0ZbfS/d6S/7cg8iBiuc7tB/VCz7FXJHowvMIytSEYtb1Womq4mEuCYWFz+nI2GixAaPnTrQLjwG77jpWlTYTqfbtxAtpzL/+72C7fYayaMBbUCw1K+pgZWSoNNObDCvRgWWDXY2N2OEM3xZstq6l5hIuE2qkO2ntLQ7/fxZuCezMNpOFrA+HS+OJ3holE5OPkbMLk8+wGNPIlKmkzDOVx9DS/Dp7DZ2QKmp99DN2e/ove+gw1n46egd0i+kNjZmrri6sJ8D+s4QkJI3U+tQFze/ui5EPf4UoUydlyVIx1VuC4+538B/m+mmw==</source>
</file>
<file path="common.php" generated-path="common.html" hash="3a881ecc79a32d7a3ee3bd0a7fbff5f4" 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="49" package="Query">
<name>do_include</name>
<full_name>\do_include()</full_name>
<docblock line="49">
<description>Bulk directory loading workaround for use
with array_map and glob</description>
<long-description></long-description>
<tag name="param" line="49" description="" type="string" variable="$path">
<type>string</type>
</tag>
<tag name="return" line="49" 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="65" package="Query">
<name>mb_trim</name>
<full_name>\mb_trim()</full_name>
<docblock line="65">
<description>Multibyte-safe trim function</description>
<long-description></long-description>
<tag name="param" line="65" description="" type="string" variable="$string">
<type>string</type>
</tag>
<tag name="return" line="65" 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="80" package="Query">
<name>db_filter</name>
<full_name>\db_filter()</full_name>
<docblock line="80">
<description>Filter out db rows into one array</description>
<long-description></long-description>
<tag name="param" line="80" description="" type="array" variable="$array">
<type>array</type>
</tag>
<tag name="param" line="80" description="" type="mixed" variable="$index">
<type>mixed</type>
</tag>
<tag name="return" line="80" 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="103" package="Query">
<name>Query</name>
<full_name>\Query()</full_name>
<docblock line="103">
<description>Connection function</description>
<long-description></long-description>
<tag name="param" line="103" description="" type="mixed" variable="$params">
<type>mixed</type>
</tag>
<tag name="return" line="103" description="" type="\Query_Builder">
<type link="Query_Builder.html">\Query_Builder</type>
</tag>
<tag name="throws" line="103" description="" type="\InvalidArgumentException">
<type link="InvalidArgumentException.html">\InvalidArgumentException</type>
</tag>
<tag name="throws" line="103" description="" type="\BadDBDriverException">
<type link="BadDBDriverException.html">\BadDBDriverException</type>
</tag>
<tag name="throws" line="103" description="" type="\BadConnectionException">
<type link="BadConnectionException.html">\BadConnectionException</type>
</tag>
</docblock>
<argument line="0" by_reference="false">
<name>$params</name>
<default>''</default>
<type>mixed</type>
</argument>
</function>
<class final="false" abstract="false" namespace="" line="26" package="Query\Query">
<extends>\InvalidArgumentException</extends>
<name>BadDBDriverException</name>
<full_name>\BadDBDriverException</full_name>
<docblock line="26">
<description>Generic exception for bad drivers</description>
<long-description></long-description>
<tag name="package" line="26" description="Query"/>
<tag name="subpackage" line="26" description="Query"/>
</docblock>
</class>
<class final="false" abstract="false" namespace="" line="36" package="Query\Query">
<extends>\UnexpectedValueException</extends>
<name>BadConnectionException</name>
<full_name>\BadConnectionException</full_name>
<docblock line="36">
<description>Generic exception for bad connection strings</description>
<long-description></long-description>
<tag name="package" line="36" description="Query"/>
<tag name="subpackage" line="36" description="Query"/>
</docblock>
</class>
<source>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</source>
</file>
<file path="autoload.php" generated-path="autoload.html" hash="7afb266805221b749d9018545e9442fd" 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="23" package="Query">
<name>QBASE_PATH</name>
<full_name>\\QBASE_PATH</full_name>
<value>dirname(__FILE__) . '/'</value>
<docblock line="23">
<description>Reference to root path</description>
<long-description></long-description>
</docblock>
</constant>
<constant namespace="" line="28" package="Query">
<name>QDRIVER_PATH</name>
<full_name>\\QDRIVER_PATH</full_name>
<value>QBASE_PATH . 'drivers/'</value>
<docblock line="28">
<description>Path to driver classes</description>
<long-description></long-description>
</docblock>
</constant>
<function namespace="" line="38" package="Query">
<name>query_autoload</name>
<full_name>\query_autoload()</full_name>
<docblock line="38">
<description>Load query classes</description>
<long-description></long-description>
<tag name="param" line="38" 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>eJytU8tu2zAQPEtfsTCCSDISsw1yShs0Tp2gKQI0L7RHgZZWEhFKVEgqrRH437sUJVu59FQDhhfenZ3hcPj5S1u1IZvPQ5jDfYd6Q4WrrzWi/wMuOyFz1MBgxS1fc4OwXBureWaFauCWb1APqIuWZ8+8xCAYd8EF72yldBA8iVrZagPfF/CLa41N381Uu9GirGzwdawgzhI4+fDxBI7dz2k/J0XzDEFQWduaM8ZKYatuvchUzfir4PaUlLA9pxQZNgb9PI23lZDGdrpE1RBo0T2zTOXI8jXPj4dhArIwZAyO/9snHJ1ddlZJxZ2LhdLgStGUwF+5kHwtEfLR2UxyY9AMYjz6AQskvzIEq0ArZaHltupHcixEg3F0f7l8vErvlk/foiPIhW54jXGaXt/cXqVpsohYlHza7bsjtFuVa/FKiqaUu32rh5ufVw/jxv36ReRRZtjISN1LJzSCUTXJV3VNmSi6pg+HCbXvxtMNfmhByZuquiVT4KVP3F7RECrNa6DEOc8O+mYvdmTxqJQPJsd+JAnfwsCXcO7Qrvsb9dgm5oDk97TXJHEtdA4GHZlFuQkDUUA8UqT4Rxhr4qhwY2mmmgYzGyVweAgjx/k5RMWwKErCgOgDCjrfpDVv4yhXqWgy2eVIhpZSreOpyXRFI5bNvTWkMAg0UmwbqrbheJrU3T4daW8pLGA2eMbe/NDW7Zi5Mx74C9uhJqQON873s+7IwqSFkBhPyJIEhntMFcXwXYukoTQ4ICl68ZQwGXyY3kOqsZWc1sxa8mR2BDP6Ti7Fq2jS3ruB6wjuVj/Ozkq0y/HNrHwO48Rx9CT/dptOOhG29S7PvMtb5++2j/MjWuha4LsXG5pW7rJF2ksKAqUoeh+68TVcNTmoYgd3HH8By2WnCw==</source>
</file>
<file path="classes/query_parser.php" generated-path="classes.query_parser.html" hash="f048c6bc67b8a96880d904b8a697994e" 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">
<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"/>
</docblock>
<property static="false" visibility="private" line="29" namespace="" package="Query\Query">
<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">
<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">
<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">
<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">
<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/JAtSrLNhSyKf49099xypl8M8yd3w4MCFA/i5QLmmG3P/o0SsBuCHgqczlBDCOdNsyhTC6VRpyWLNRQav2RplbXWSs/iWLdBxmrXghBU6EdJxrvlS6GQNPw3gNyYlZnY2Fvla8kWinbPmDvw4gGeHT59B31yeW1zKs1twnETrXL0IwwXXSTEdxGIZshVn+jlFEm58pjzGTGGFJ3ie8FTpQi5QZGQ0KG7DWMwwnE3ZrF+DyTB03TCE/lf7uA2zv2qecr2Gs5QpBVpAziTRqN6nEKesUKhgLiTkUuQo0zWgilnOswXwGWaazzlKtUcxbLJVxXR/MHRj68o+R1fGm4RPruuYgBwyGuECP1IYWqPMKu8rJrkoFKh1ptlHIG5zkZF7ZQys0QlBgGrH1uYxdJ1c8hXTCJ0l03EStcsdVSjfdRxvXmRWKB4cHYPn37D+X6f9Pw7730WT7tj3BwfDYBwEXs9gN+neRfcJPhgG3QppiGJa1Lij8vTNefnkybD8uxzTd1iO/yzD8vhoWL6kX7/8trwcleNu+ebyuhx/Y4aPy98vR57rBN/fYcUmgw+lXUxJNHXWeH+6ykZWjQd7yd2da9K5O0NlmPIMZ3sTO2GfkTsti5gWCMkH9WwueKaBfrXU5CYZemZLILzRV4ckuJtUEz9EUdws6xsYZel5get8oqioS16h3tLvjlpIFriIKkmwNPW9t96goxOu+se7OrnZiGMyIFTPxkP/W2DcQilv0oOr0cWr6JeL6+hydH4xIh6+xN+WwB70uF2r/+qzleqDHjcKuM/fhnNcUUeTLRWPaRBZjLZ5haQtmgYJ2JkXadr4N1V7HP3d8pGslf6jUg26b7l3D1M74f0bG63qHyBDgE6kKBYJXbFp2h6wbAYLIsoOCqVBYoorRu3Q9rWz667pXwoy96sWs4AeeHOeUpiRHfSC/TiNED6bPvy6h0bb11dVS1YdDEukg3Rmq61QGwGYFOuTRFfF/9Imt9bRO9otbI/X7V1nub8DWN1LpHM02yPif+ZhZH0qYFRQiUD7DWmoKudmX95O3A5Cp52Dkzrs+w6vloztYvuVcUNIhh+q8Xavr3RIxUAWJzUamIKOFB/Iyppt2d1MyBJ8rprlDSyAocXfHE7ghb0zDBsmW5rbBSqKP9s3lAuSuJjDe3u4V+oY0HvcP24s86I=</source>
</file>
<file path="classes/idb_sql.php" generated-path="classes.idb_sql.html" hash="3941cb8124ece2cc00caaf6ff3b40707" 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\Query">
<name>iDB_SQL</name>
<full_name>\iDB_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="Query"/>
</docblock>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="33" package="Query\Query">
<name>limit</name>
<full_name>\iDB_SQL::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\Query">
<name>explain</name>
<full_name>\iDB_SQL::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\Query">
<name>random</name>
<full_name>\iDB_SQL::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\Query">
<name>db_list</name>
<full_name>\iDB_SQL::db_list()</full_name>
<docblock line="56">
<description>Returns sql to list other databases</description>
<long-description></long-description>
<tag name="return" line="56" description="" type="string">
<type>string</type>
</tag>
</docblock>
</method>
<method final="false" abstract="false" static="false" visibility="public" namespace="" line="63" package="Query\Query">
<name>table_list</name>
<full_name>\iDB_SQL::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\Query">
<name>system_table_list</name>
<full_name>\iDB_SQL::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\Query">
<name>view_list</name>
<full_name>\iDB_SQL::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\Query">
<name>trigger_list</name>
<full_name>\iDB_SQL::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\Query">
<name>function_list</name>
<full_name>\iDB_SQL::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\Query">
<name>procedure_list</name>
<full_name>\iDB_SQL::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\Query">
<name>sequence_list</name>
<full_name>\iDB_SQL::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\Query">
<name>type_list</name>
<full_name>\iDB_SQL::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\Query">
<name>column_list</name>
<full_name>\iDB_SQL::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>eJytVU1v00AQPdu/Yg49pFGbhaonPkRb2iKhgFQK4lit12N7FXvX3Y9SC/HfGa/tmJBEchC5ZD2e997M293xm3d1UcdsPo9hDnceTUOLdn1rELsAXHlZpmiAwTV3POEW4TKxznDhpFaw5A2aHnXBvSu0iaKvstKuaODjAr5zY1CFt0LXjZF54aL3wwpm4hjOXrw8g9P27zzklVKtIIoK52r7irFcusInC6Erxp8kd+cky4Zi22yBymKXT+l1IUvrvMlRKwIt/IoJnSJLE56e9skBWHOx4jkBBy4Wx4zB6X/7xYOzNScLHGTaQDp4WHEla1/yYKL1iSi5tWgHJ/viYOyTcv4OslgqhybjAkFeXz3c3y3hZxxHrWxEmA/oRkFbo5CZFGAfy1BKKSvpgHQ9GULpAXLB+73tnqhyXgFFpMrhiJB/hkkcjgLLVlRnmcU+bJB2Q/UkbYjFUe0T2grIvOpOUWCZtQInPeXJQPL29nJ5f3P8Oo7Gxj7pVGYNuALhMRxSpyGnZsdAXXI1NrWnjSmV4TNRSRVqoyI2zW31BjsNV6muQBu6LD3dLkenaHZUs82evwSgDXrUbimtA7pkOJ4pO2pOUUmTh5ZkttHVLhViLw8lD5iJ/LaxDqt/kumgD4eoPUn8caBKC5nqFY21HM2hbnWovRobEgNqW+Pzt+Vyj8KwmCZhnTaYQm20wNSbQ3dljZuohnRnlTh473vYWmTrsmyorAdhJrFMwTX1DsFKPmO6b5MIsUurHQRS0QioumHOE+270SB06Ss6IFKFx5Ddj2FyNxzafTNq/XKaF51SV12HbU3/1X7PblQKOmtvO7mxoO/9b8/mZ+I=</source>
</file>
<file path="drivers/mysql/mysql_driver.php" generated-path="drivers.mysql.mysql_driver.html" hash="e29daa46f565ffbb70af947039e0b491" 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>\DB_PDO</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>eJytVFFv2jAQfk5+xQkhJVRAtqoPEx1dKVCpE9C1pJr2lBrHEIvgpLbDFlX8952dpFRT16ciocS++747f/c5X7/lSe4GJycunMBdwWSJL+b9WjJWbcBVwdOYSQhgQjRZEcVgtFJaEqp5JmBGSiZr1GVO6JZsmOM0XHBJCp1k0nFCvst0UsL3PvwkUjJhozTLS8k3iXbGzRv4tAOnnz6fQs88zmxeysUWHCfROleDINhwnRSrPs12Adlzos+wk+BYM+WUCcWqfEzPE54qXcgNywSC+sU2oFnMgnhF4l6djMDAdYMAeh/2cxtl5+XybgYqZ5SvOQWaEqX+kQyO3ati1WxOJN8zqWxvFlVTsT+aiVjB5Cr6MbmFZ9d1TCkH4UumQScMVkihOd0CUXZdAxUlOQOaEDM/HBxCLOxyTyTgVLnYmHXgOrnMNMOcGNoVKjIoGIL36J2/KjjOhMA80Fldo7HJkTvHaruaHdqxEm9tF4pJQXbsrViOR/+dyfh1DE1ESmhnubGhapouVjhPWBeicmcUUQxqWVDtm8LdY52hKNK0e+Ru1jXh0PL7nY7rPLuOg8ZolDUyKGYP/BBe975glK/Bj9maCxb7Hk5kMJj/QimiURjeRzeLmzAa387no8XEM3yW0GkKoaK2VLRjaFC/2e5Wu75Jdd6jhOEFtJbTEBaj+XRZtQTj29lsFE7Bs0uv1TU0nc45Pg74r1tGYfJM1cJ4u1I9pV4HhsMhXI9my2nHzspM3IYGXt+szys8DoEJPRi8o/ArcY+6mh4Oxj4fe9Ne7Djd5boEAujB9L8WfAm+YRk8iqBE4yRsVj3/tk646l08mVvqt8L7h8XY6Pv4XGUdHlvVwQ74CZmKGLI1WNGi2F7hPn5n/wITMI1O</source>
</file>
<package name="Default" full_name="Default"/>
<package name="Query" full_name="Query">
<package name="Drivers" full_name="Query\Drivers"/>
<package name="Query" full_name="Query\Query"/>
</package>
<namespace name="global" full_name="global"/>
<deprecated count="0"/>
</project>