Subject | Re: Lowecase identifiers |
---|---|
Author | sqlsvr |
Post date | 2010-07-09T21:43:51Z |
Thanks for the response. I typed this in FlameRobin:
CREATE TABLE accounts
(
account_id INT NOT NULL PRIMARY KEY,
account_name VARCHAR(25) NOT NULL
);
After I executed it, it showed up as "ACCOUNTS" in the tables list. Looking at the DDL in FlameRobin, it shows the DDL all capitalized.
How do I get it show up as lowercased?
CREATE TABLE accounts
(
account_id INT NOT NULL PRIMARY KEY,
account_name VARCHAR(25) NOT NULL
);
After I executed it, it showed up as "ACCOUNTS" in the tables list. Looking at the DDL in FlameRobin, it shows the DDL all capitalized.
How do I get it show up as lowercased?