Empty conditions are not supported
Created by: ZebaSz
Operations that use the WHERE clause should support conditionsless usage. For instance:
sqlSelect('City', 'Name', '')
Should select the Name field of all rows in the City table, but fails due to no conditions. sqlSelect('City', 'Name') (ommiting the conditions parameter) could also be supported.