Subject Re: [firebird-support] info
Author Dimitry Sibiryakov
04.01.2017 15:41, Nico Speleers - Carfac BVBA nico.speleers@... [firebird-support]
wrote:
> We want to create table- and fieldnames (Firebird 3) in camelcase. If we want to write a
> select statement we have to use quotes around a tablename. This is not userfriendly. Is
> there a way that we don't have to use the quotes in SQL-statements ?

Just don't use double quotes:

Create table MyTable(aField integer);
Select aField from MyTable;

No problem if you write queries by hand.
On other hand, if you use a visual query builder, you'll have no problem with double
quotes.

--
WBR, SD.