Subject Error when using quotes (")
Author Svend Meyland Nicolaisen
Hi I am getting the error below when I am using quotes in my query like
this:

CREATE TABLE TestTable ("ID" INTEGER, "Name" VARCHAR(30))

If I leave out the quotes everything works fine:
CREATE TABLE TestTable (ID INTEGER, Name VARCHAR(30))

I am using FireBird 1.5 RC7.

Error message:
"The insert, update, delete, ddl or authorization statement cannot be
executed because the transaction is inquiry only".

How can this be?

-
Svend