Subject RE: [firebird-support] Dialect 1 database with a table called CASE
Author Dunbar, Norman
Ian,

>> However, I can't access the case table from the command
>> line, which could prove to be a problem.
Try putting the tablename in uppercase and surrounded by double quotes
as in "CASE".


>> But I'm confused. I was confident that you couldn't access
>> tables and fields that became reserved words in dialect 1
>> database. But how does the BDE manage it?
Probably, by doing the above.

As an example, granted Dialect 3 I'm afraid, Firebird 2.1.3:

SQL> create table "CASE"(a numeric(5));
SQL> commit;

SQL> insert into case values (12345);
Statement failed, SQLCODE = -104
Dynamic SQL Error
-SQL error code = -104
-Token unknown - line 1, column 13
-case

SQL> insert into "CASE" values (12345);

SQL> commit;

SQL> select * from case;
Statement failed, SQLCODE = -104
Dynamic SQL Error
-SQL error code = -104
-Token unknown - line 1, column 15
-case

SQL> select * from "CASE";

A
============
12345

SQL> commit;


Cheers,
Norman.

Norman Dunbar
Dunbar IT Consultants Ltd
Tel: 0779 3292 984
Tel: 0773 4531 439

Registered address:
Thorpe House
61 Richardshaw Lane
Pudsey
West Yorkshire
United Kingdom
LS28 7EL

Company Number: 05132767


Information in this message may be confidential and may be legally privileged. If you have received this message by mistake, please notify the sender immediately, delete it and do not copy it to anyone else. We have checked this email and its attachments for viruses. But you should still check any attachment before opening it. We may have to make this message and any reply to it public if asked to under the Freedom of Information Act, Data Protection Act or for litigation. Email messages and attachments sent to or from any Environment Agency address may also be accessed by someone other than the sender or recipient, for business purposes. If we have sent you information and you wish to use it please read our terms and conditions which you can get by calling us on 08708 506 506. Find out more about the Environment Agency at www.environment-agency.gov.uk

Information in this message may be confidential and may be legally privileged. If you have received this message by mistake, please notify the sender immediately, delete it and do not copy it to anyone else.

We have checked this email and its attachments for viruses. But you should still check any attachment before opening it.
We may have to make this message and any reply to it public if asked to under the Freedom of Information Act, Data Protection Act or for litigation. Email messages and attachments sent to or from any Environment Agency address may also be accessed by someone other than the sender or recipient, for business purposes.

If we have sent you information and you wish to use it please read our terms and conditions which you can get by calling us on 08708 506 506. Find out more about the Environment Agency at www.environment-agency.gov.uk