I have a requirement wherein I have to save a large number of parameters from UI to database (Oracle 11g). There's also some business logic involved, so I have decided to use a Stored Procedure. But passing around 100 parameters to stored procedure seems ugly and performance intensive.
There's an option of using Object Types, but that's Oracle specific. Is there a generic solution to tackle this problem?
Even a non stored procedure approach is welcome.