show/hide this revision's text 2 added 10 characters in body

You can index pl/sql tables by other types besides integers. This way you can create "dictionary" like structures, which can make your code much easier to read:

Example:

DECLARE
  TYPE dictionary IS TABLE OF NUMBER VARCHAR2(200) INDEX BY VARCHAR2(100);
  dict dictionary;
BEGIN
  dict('NAME') := 'John Doe';
  dict('DATE'dict('CITY') := sysdate'New York';

  dbms_output.put_line('Name:' || dict('NAME'));
END;
show/hide this revision's text 1 [made Community Wiki]

You can index pl/sql tables by other types besides integers. This way you can create "dictionary" like structures, which can make your code much easier to read:

Example:

DECLARE
  TYPE dictionary IS TABLE OF NUMBER INDEX BY VARCHAR2(100);
  dict dictionary;
BEGIN
  dict('NAME') := 'John Doe';
  dict('DATE') := sysdate;

  dbms_output.put_line('Name:' || dict('NAME'));
END;