Skip to content

Instantly share code, notes, and snippets.

@myleftboot
Created September 13, 2012 15:38
Show Gist options
  • Save myleftboot/3715159 to your computer and use it in GitHub Desktop.
Save myleftboot/3715159 to your computer and use it in GitHub Desktop.
How a empt to dept lookup looks after a code generator
DECLARE
l_row dept%ROWTYPE;
BEGIN
l_row := dept_api.get(p_dname => 'Accounts');
/* Do something with the value you have retrieved in l_row */
END;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment