> I couldnt find a way to edit the post I just made, sorry. No worries.
> I just wanted to > also mention that JPublisher also maps the whole package to a single class. > Each individual procedure or function in the package becomes methods on that > class. Yes, that is usually more convenient at the call-site. jOOQ does both, mapping packages to classes with one method per procedure on them, as well as mapping packages to packages with one class per procedure on them. The latter is needed in jOOQ as a wrapper for OUT parameters, as well as for being able to use DEFAULT parameter values. Cheers Lukas
