I need to maintain state in a PL/SQL application. It needs to hold a small table during the session.
As I understand it, this is accomplished via a package variable, but I don't know how to create a table as a package variable.
Anyone explain how to do this or alternatives?
Expansion of Problem I have a WHERE IN condition that I must populate in a cursor at run time. Since to my knowledge I can only populate it with a hard coded literal or a SELECT I need to hold all the IN's that are selected by the user during the session.