hmmm …
I agree that UPPERCASE KEYWORDS in SQL generally makes things more readable.
Wasn't it simpler just to have the keywords.db containing KEYWORDS in UPPERCASE?
I am not sure what to think about FuNcTiOnS …. <_<
But I would not mind a setting …
You can convert keywords in the database to UPPERCASE with the SQLite command line client, just execute:
Code:
Update objects set object_name = UPPER(object_name) where object_type = 1;
.. what I would suggest was done with next release 🙂
Note that if you have added your own KEYWORDS (with LOWERCASES) containing non-ASCII characters, it won't work on those!