Datatype in naming conventions

Worker

Member³
I regret to admit that we use Hungarian Notation where I work, which means that our code looks like this:

Code:
FUNCTION Foo(
  pnSize  IN NUMBER,
  psText  IN VARCHAR2 )
IS
  dNow    DATE;
(...)
We survived just fine without the new "Naming conventions" hints, but now that this functionality is here, would it be possible to add datatype as one of the variables for the naming scheme?
 
Back
Top