webservice/library/Metier/Search/EngineQL.php
Michael RICOIS 53e213202b CS PSR-2
2016-11-24 16:02:49 +01:00

39 lines
867 B
PHP

<?php
/**
*
* @author mricois
*
* SELECT
* select_expr [, select_expr ...]
* FROM index [, index2 ...]
* [WHERE where_condition]
* [GROUP BY {col_name | expr_alias} [, {sol_name | expr_alias}]]
* [WITHIN GROUP ORDER BY {col_name | expr_alias} {ASC | DESC}]
* [ORDER BY {col_name | expr_alias} {ASC | DESC} [, ...]]
* [LIMIT [offset,] row_count]
* [OPTION opt_name = opt_value [, ...]]
*
*/
class Metier_Search_EngineQL
{
protected $host = null;
protected $port = null;
/* OPTION */
/**
* max time in milliseconds to wait for remote queries to complete,
* see agent-query-timeout under Index configuration options for details
* @var integer
*/
protected $agent_query_timeout;
public function __construct()
{
}
public function SetLimits($offset, $limit, $max=0, $cutoff=0)
{
}
}