in reply to Re: DBD::Oracle faster with bound sql than stored procedures?
in thread DBD::Oracle faster with bound sql than stored procedures?
If you're paying for Oracle it's because you need Oracle. And having paid for it you'd better use it.
If you don't know who 'Ask Tom' then perhaps you should find out. His advice is invaluable in building large scalable Oracle databases.
Personally, I'd use stored procedures for virtually all database access. I'd also put all the business logic I could into the the procs. Coupling your data and business logic protects your application.
It's the front ends that should be easily swapped out and changed not the database.
As for maintaince nightmares. Yup, I've seen those, Embedded dynamic SQL in Java code was the worst.
As for the Oracle client C library, yes its blisteringly fast.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: DBD::Oracle faster with bound sql than stored procedures?
by Tanktalus (Canon) on Nov 24, 2006 at 22:00 UTC | |
by Jonathan (Curate) on Dec 04, 2006 at 12:26 UTC | |
by nanotasher (Novice) on Jul 09, 2008 at 15:44 UTC | |
Re^3: DBD::Oracle faster with bound sql than stored procedures?
by exussum0 (Vicar) on Nov 25, 2006 at 04:30 UTC | |
Re^3: DBD::Oracle faster with bound sql than stored procedures?
by andreas1234567 (Vicar) on Nov 25, 2006 at 13:00 UTC | |
by Jonathan (Curate) on Dec 04, 2006 at 12:30 UTC |