Peter Mount wrote:
>
> Unless the field names are in quotes, the parser forces them into
> lowercase, so in your example, you would change it to:
>
> select 'Name' from 'Services';
>
Actually it should be
select "Name" from "Services";
single quotes (') ar for strings.
-------------
Hannu