Subject Re: [firebird-support] HOW is this possible, and how to fix
Author Helen Borrie
At 10:48 AM 16/10/2003 +0200, you wrote:


>What do I need to do to fix this, in "firebird manager" I can see and
>change the data. but when I need to get data by SQL query's it won't work.
>
>SQL> show tables
>CON> ;
> adresses company
>
> coredata coredatacode
>
> glassGroup glassMaterial
>
> glasseSales ocsGlassGroup
>
> ocsSupplier optician
>

Your table names are case-sensitive.


>SQL> select * from optician;

Select * from "optician";

heLen