Subject Re: [firebird-support] Does Firebird 2.0 support mixed case in field names?
Author Frank Schlottmann-Goedde
Mario Lacunza schrieb:

> Sure?? I use Ubuntu and Flamerobin to create DB and tables, I use Dialect 3
> , Characterset= None and if:
>
> CREATE "table1"
>
> the treeview shows:
>
> table1
>
> but when I try to use in a select statement (with Python+KinterbasDb) the query resultset is wrong, no Table name exist.....
>


If you create "table1" you will need to
select * from "table1";

mind the double quotes;

(never really understood why anyone could want to do sth. like that :-)


Frank