Пример #1
0
 /**
 	Run an EXPLAIN query instead of the normal query given in parameter.
 	Queries will fail if used with anything other than SELECT.
 
 	@param	$sQueryString	The query string
 	@return	weePgSQLResult	Object containing the EXPLAIN results.
 */
 protected function doQuery($sQueryString)
 {
     return new weeExplainSQLResult(parent::doQuery('EXPLAIN ' . $sQueryString));
 }