Project

General

Profile

Bug #21780 » 12897_dbal.diff

Administrator Admin, 2009-12-03 11:32

View differences:

class.ux_t3lib_sqlparser.php (working copy)
}
/**
* Compiles a "SELECT [output] FROM..:" field list based on input array (made with ->parseFieldList())
* Can also compile field lists for ORDER BY and GROUP BY.
*
* @param array Array of select fields, (made with ->parseFieldList())
* @param boolean Whether SQL hints should be compiled
* @return string Select field string
* @see parseFieldList()
*/
public function compileFieldList($selectFields, $compileSqlHints = TRUE) {
// TODO: Handle SQL hints according to current DBMS
return parent::compileFieldList($selectFields, FALSE);
}
/**
* Compiles a "FROM [output] WHERE..:" table list based on input array (made with ->parseFromTables())
*
* @param array Array of table names, (made with ->parseFromTables())
(2-2/2)