Subject | Re: [firebird-support] Re: Lowecase identifiers |
---|---|
Author | unordained |
Post date | 2010-07-12T14:44:35Z |
---------- Original Message -----------
From: "sqlsvr" <sqlsvr@...>
create table "accounts"
(
"account_id" int not null primary key,
"account_name" varchar(25) not nul;
);
Unless you specify the table/field/procedure/parameter/... name in double-quotes,
FB assumes you mean intend it to be case-insensitive. If you do this, however,
you'll need to double-quote your identifiers everywhere:
select "account_id", "account_name" from "accounts";
-Philip
From: "sqlsvr" <sqlsvr@...>
> CREATE TABLE accounts------- End of Original Message -------
> (
> account_id INT NOT NULL PRIMARY KEY,
> account_name VARCHAR(25) NOT NULL
> );
> How do I get it show up as lowercased?
create table "accounts"
(
"account_id" int not null primary key,
"account_name" varchar(25) not nul;
);
Unless you specify the table/field/procedure/parameter/... name in double-quotes,
FB assumes you mean intend it to be case-insensitive. If you do this, however,
you'll need to double-quote your identifiers everywhere:
select "account_id", "account_name" from "accounts";
-Philip