Created
September 13, 2012 15:38
-
-
Save myleftboot/3715159 to your computer and use it in GitHub Desktop.
How a empt to dept lookup looks after a code generator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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