what really bugs me with the current pl/sql-developer and will probably keep me from upgrading to v 7 is that it's not case sensitive. Consider this example:
create table "MyTab" ("Col1" number);
I can do this in sqlplus, but when handling this table with pl/sql-developer i often end up with e.g.
select * from mytab
which leads to an error of course. When is this fixed?
br,
stephan
create table "MyTab" ("Col1" number);
I can do this in sqlplus, but when handling this table with pl/sql-developer i often end up with e.g.
select * from mytab
which leads to an error of course. When is this fixed?
br,
stephan