Claus Pedersen
Member³
I have the following code:
When I mark the code "emp.ename, dept.dname FROM emp, dept" and right-click, I get the options Properties, Describe, View, Edit, Drop, Query data etc.
These options should not be available when several object names are selected. It can be potentially dangerous, which of the tables emp or dept will be dropped?
Otherwise it is a very nice feature that objects can be described or queried just by right-clicking the name, this must not be changed, but the context menu content should be consistent.
Code:
SELECT emp.ename, dept.dname
FROM emp, dept
WHERE emp.empno = 7369
AND emp.deptno = dept.deptno
These options should not be available when several object names are selected. It can be potentially dangerous, which of the tables emp or dept will be dropped?
Otherwise it is a very nice feature that objects can be described or queried just by right-clicking the name, this must not be changed, but the context menu content should be consistent.