Lowercase Filename when saving

RogerK

Member
Depending on the type of object the initial filename is saved in lowercase (seems to be the default) or uppercase (at least for procedures). Is there a way to tell the system always to save in a defined case ?
 
The default filename will be exactly same as the object name in the source file. For example, this function:

create or replace function Even(num: integer)

will lead to a default filename Even.fnc.
 
Back
Top