Subject Lowecase identifiers
Author sqlsvr
How can I tell Firebird/Flamerobin to use lowercase for identifiers (such as table names, variables etc) AND uppercase for SQL?

For an example:
SELECT account_id, account_name FROM accounts WHERE account_id = 1;

is so much easier to read than:

SELECT ACCOUNT_ID, ACCOUNT_NAME FROM ACCOUNTS WHERE ACCOUNT_ID = 1;

As you can see, there is "visual cues" in the first statement and when debugging very large SQL statements, it makes it easier.