I would like to create a dynamic table or view using DLL calls.
Say, that I have a machine connected to my computer through a serial cable. Upon request, I could go out and query this device about how it's doing. It turns out that 4 of 10 of the device's submachines are up and running, and each one of them has an individual rate of how well it is performing.
So when I run "select * from mysubmachines"
I want some kind of result like:
ID ItemsPerHour
--- ------------
123 56
456 98
789 32
897 45
I think the problem is that I don't know how to return a variable number of identic parameters from the DLL. (Could PL/SQL Tables be the solution to this problem?)
Say, that I have a machine connected to my computer through a serial cable. Upon request, I could go out and query this device about how it's doing. It turns out that 4 of 10 of the device's submachines are up and running, and each one of them has an individual rate of how well it is performing.
So when I run "select * from mysubmachines"
I want some kind of result like:
ID ItemsPerHour
--- ------------
123 56
456 98
789 32
897 45
I think the problem is that I don't know how to return a variable number of identic parameters from the DLL. (Could PL/SQL Tables be the solution to this problem?)