Inherited Variables
Class: Kohana_SphinxQL_Query
- Kohana_SphinxQL_Query::$_fields
- Kohana_SphinxQL_Query::$_group
- Kohana_SphinxQL_Query::$_group_order
- Kohana_SphinxQL_Query::$_indexes
- Kohana_SphinxQL_Query::$_limit
- Kohana_SphinxQL_Query::$_offset
- Kohana_SphinxQL_Query::$_options
- Kohana_SphinxQL_Query::$_orders
- Kohana_SphinxQL_Query::$_search
- Kohana_SphinxQL_Query::$_sphinx
- Kohana_SphinxQL_Query::$_wheres
Inherited Constants
Inherited Methods
Class: Kohana_SphinxQL_Query
- Kohana_SphinxQL_Query::__construct()
- Constructor
- Kohana_SphinxQL_Query::add_field()
- Adds a entry to the list of fields to return from the query.
- Kohana_SphinxQL_Query::add_fields()
- Adds multiple entries at once to the list of fields to return.
- Kohana_SphinxQL_Query::add_index()
- Adds an entry to the list of indexes to be searched.
- Kohana_SphinxQL_Query::build()
- Builds the query string from the information you've given.
- Kohana_SphinxQL_Query::execute()
- Executes the query and returns the results
- Kohana_SphinxQL_Query::group_by()
- Sets the GROUP BY condition for the query.
- Kohana_SphinxQL_Query::group_order()
- Sets the WITHIN GROUP ORDER BY condition for the query. This is a Sphinx-specific extension to SQL.
- Kohana_SphinxQL_Query::limit()
- Sets the limit for the query
- Kohana_SphinxQL_Query::offset()
- Sets the offset for the query
- Kohana_SphinxQL_Query::option()
- Adds an OPTION to the query. This is a Sphinx-specific extension to SQL.
- Kohana_SphinxQL_Query::order()
- Adds an ORDER condition to the query.
- Kohana_SphinxQL_Query::remove_field()
- Removes a field from the list of fields to search.
- Kohana_SphinxQL_Query::remove_fields()
- Removes multiple fields at once from the list of fields to search.
- Kohana_SphinxQL_Query::remove_group_by()
- Removes the GROUP BY condition from the query.
- Kohana_SphinxQL_Query::remove_group_order()
- Removes the WITHIN GROUP ORDER BY condition for the query. This is a Sphinx-specific extension to SQL.
- Kohana_SphinxQL_Query::remove_index()
- Removes an entry from the list of indexes to be searched.
- Kohana_SphinxQL_Query::remove_option()
- Removes an OPTION from the query.
- Kohana_SphinxQL_Query::remove_search()
- Removes the search text from the query.
- Kohana_SphinxQL_Query::search()
- Sets the text to be matched against the index(es)
- Kohana_SphinxQL_Query::sphinx()
- Sets or gets the SphinxQL_Core object associated with this query.
- Kohana_SphinxQL_Query::where()
- Adds a WHERE condition to the query.
- Kohana_SphinxQL_Query::where_in()
- Adds a WHERE <field> <not> IN (<value x>, <value y>, <value ...>) condition to the query, mainly used for MVAs.
- Kohana_SphinxQL_Query::__toString()
- Magic method, returns the result of build().
Class Details
Wrapper class for Kohana_SphinxQL_Query
Tags:
- author - MasterCJ <mastercj@mastercj.net>
- version - 0.1
- license - http://mastercj.net/license.txt
[ Top ]