Subject | Re: [firebird-support] Upper case behaviour |
---|---|
Author | Helen Borrie |
Post date | 2007-12-04T10:19:11Z |
At 08:53 PM 4/12/2007, you wrote:
But you can define object names to be case-sensitive by use of the ISO-standard double-quoting convention when creating the object, e.g.,
create table "MyTable" (
"fieldID" integer,
"data" varchar(50),
constraint "PK_MyTable" primary key("fieldID"))
Many people find this very annoying because, once you define these identifiers with double-quotes, you must always refer to them in double-quotes.
./heLen
>HelloDisable? - No.
>Can I disable server to uppercase object names?
>So when I write
>select fieldID from myTable
>server return 'fieldID' from 'myTable' not 'FIELDID' from 'MYTABLE'
But you can define object names to be case-sensitive by use of the ISO-standard double-quoting convention when creating the object, e.g.,
create table "MyTable" (
"fieldID" integer,
"data" varchar(50),
constraint "PK_MyTable" primary key("fieldID"))
Many people find this very annoying because, once you define these identifiers with double-quotes, you must always refer to them in double-quotes.
./heLen