Subject Re: Lowecase identifiers
Author sqlsvr
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?