if add "Special Copy" feature then add "Special Paste" feature
Auto Complete from cursor, records, select and ets...
Look for this:
1.
declare
Cursor c_Emp is select emp.id from emp;
....
....
begin
for CurRec in c_Emp loop
Var := CurRec.[!!!!] - DropDown List !!
end loop;
end;
2.
Type MyRec is Record (
emp_id number;
);
EmpRec MyRec;
...
...
EmpRec.[!!!!] DropDown List
3.
SELECT [!!!!] (DropDown List) FROM EMP;
Auto Complete from cursor, records, select and ets...
Look for this:
1.
declare
Cursor c_Emp is select emp.id from emp;
....
....
begin
for CurRec in c_Emp loop
Var := CurRec.[!!!!] - DropDown List !!
end loop;
end;
2.
Type MyRec is Record (
emp_id number;
);
EmpRec MyRec;
...
...
EmpRec.[!!!!] DropDown List
3.
SELECT [!!!!] (DropDown List) FROM EMP;