Not sure if anyone else has noticed this little problem.
When I create a Java class in the db, I do so using something like:
create or replace and compile java source named "ExternalProcess"
However when I go to Java Source in the tree and right-click -> Edit, what gets put in the resulting program window is:
create or replace and compile java source named externalprocess as
When you press F8 to compile, it actually attempts to create a new java source with the wrong name, because the upper/lowercase has not been preserved, and the double quotes are missing. i.e. in my example, it tries to create a java class named EXTERNALPROCESS
Any workaround for this?
When I create a Java class in the db, I do so using something like:
create or replace and compile java source named "ExternalProcess"
However when I go to Java Source in the tree and right-click -> Edit, what gets put in the resulting program window is:
create or replace and compile java source named externalprocess as
When you press F8 to compile, it actually attempts to create a new java source with the wrong name, because the upper/lowercase has not been preserved, and the double quotes are missing. i.e. in my example, it tries to create a java class named EXTERNALPROCESS
Any workaround for this?