Correcting omission of group in DboOracle. Fixes #98

This commit is contained in:
mark_story 2009-09-23 23:16:57 -04:00
parent 4530e706a4
commit 34deb2a18d

View file

@ -905,7 +905,7 @@ class DboOracle extends DboSource {
switch (strtolower($type)) {
case 'select':
return "SELECT {$fields} FROM {$table} {$alias} {$joins} {$conditions} {$order} {$limit}";
return "SELECT {$fields} FROM {$table} {$alias} {$joins} {$conditions} {$group} {$order} {$limit}";
break;
case 'create':
return "INSERT INTO {$table} ({$fields}) VALUES ({$values})";