Good afternoon,
So, in our Oracle database all table names, view names, sp and functions names are written with uppercase.
But in SqlServer, there are some that were created with lowecase letters.
As our project works with both databases, in the bussiness logic of the application, I have for example the call :
ActionProcedures.MYPROCNAME();
And whether it is compiled for Oracle, it calls the proc. for Oracle, if not, it calls for SqlServer.
As the LLBL generated MYPROCNAME() for Oracle, but MyProcName() for SqlServer, I have to make two distinct calls for this.
I am asking because in an older version of LLBL, the name were both generated with UPPERCASE, but I am just not able to find what needs to be checked/unchecked from the Designer's Properties or Preferences.