Subject Re: Field names forced to upper case
Author Roman Rokytskyy <rrokytskyy@yahoo.co.uk>
Helen,

> When you changed it, did you do it with a statement like this:
>
> alter table aTable alter column PACKETID to "PacketID";
>
> i.e. if you didn't double-quote the identifier in the
> redeclaration, it won't have changed anything.

Actually driver code should handle this situation. After executing
query we have all column names locally.

Access to the column usually happens using column position in result
set. When column is accessed by name, we traverse result set fields
and resolve name into the column position.

Best regards,
Roman Rokytskyy