NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Paging (Score:3, Informative)
I presume you've already done this [perl.org], since you mentioned nesting queries three levels deep.
Learn from how we do it in Perl. Got useful functionality that looks ugly, even hacking the language? Encapsulate it in a module. Abstract out the parameters you need (lower bound, upper bound, maybe table name and where clause if you want to use dynamic SQL), then stick it in a stored procedure.
Oracle PL/SQL Best Practices [oreilly.com] says:
Or, to generalize, encapsulate your queries in stored packages, procedures, and functions. Makes things reusable and, more importantly, nice and clean for you and your successors.
J. David works really hard, has a passion for writing good software, and knows many of the world's best Perl programmers
Reply to This
Re:Paging (Score:3, Informative)
Hmm, even better, from the beginning of the chapter:
SQL-00: Establish and follow clear rules for how to write SQL in your application.
Okay, not all of that was relevant here, but the point was, once you've written the triple-nested select, encapsulate so from now
J. David works really hard, has a passion for writing good software, and knows many of the world's best Perl programmers