I need to maintain state in a PL / SQL application. During the session, you need to hold a small table.
As I understand it, this is done using a package variable, but I don't know how to create a table as a package variable.
Does anyone explain how to do this or alternatives?
Extension of the problem:
I have a condition WHERE INthat I have to fill with the cursor at runtime. Since, as far as I know, I can only fill it with a hard-coded literal, or SELECTI need to save everything IN'sthat the user selected during the session.
source
share