Hello, I have several stored procedures in my database, some of them have params, some have no params. I tried to fill a business object by calling the stored procedures, but failed so far. How could I do that dynamically? Later, I want to use this object as a datasource for a report...but thats the next step. The important facts are:
- different stored procs return different amount of columns
- stored procs can have params, but its not required
How could I achieve that?
Thanks :)