mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-29 07:12:15 +09:00
Bug fixes:
DBCubrid.class.php - remove "WHERE" clause when all conditions are empty queryargument/QueryArgument.class.php and queryargument/validator/QueryArgumentValidator.class.php - this is for backwords compatibility - there are many xml files that have variable names (var) given with "." table/TableTag.class.php - autocomplete default table name alias with table name. git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0-DB@8426 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
b4ca6896bc
commit
23e991bec0
5 changed files with 14 additions and 8 deletions
|
|
@ -777,10 +777,10 @@
|
|||
|
||||
$where = '';
|
||||
if(count($output->conditions) > 0){
|
||||
$where = 'WHERE ';
|
||||
foreach($output->conditions as $conditionGroup){
|
||||
$where .= $conditionGroup->toString();
|
||||
}
|
||||
if(trim($where) != '') $where = 'WHERE ' . $where;
|
||||
}
|
||||
|
||||
$groupBy = '';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue