Board index » delphi » Problem after modifying the query.
Bob Bedford
![]() Delphi Developer |
Problem after modifying the query.2003-10-14 05:44:07 PM delphi35 I've this query (QueryGrid) SELECT DISTINCT ....,count(distinct passenger_booking.client_id) where.... I've a TDbGrid, in wich a field's source is COUNT. I have then modified the The query this way: SELECT DISTINCT ....,count(distinct passenger_booking.client_id) as PASSCOUNTER where.... I've also modified the TDBGRID. Now the field's source is PASSCOUNT, but as soon as I open the query, I get an error message: EDataBaseError...'QueryGrid': field 'COUNT' not found. Processus stopped.... How to fix it ??? |