Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: Where to find discussion of EJB vs Database
Hans Forbrich wrote:
> Daniel Morgan wrote:
>
>
>>Hans Forbrich wrote: >><snipped> >> >>>TIA >>>/Hans >>>forbrich at remove_this dot telus planet dot net >> >>No point in restating Tom Kyte's arguments as they are solid and >>stand on their own. >> >>But here are a few thoughts of mine: >> >><also snipped>
That's more difficult to find. How about quoting an instructor at the University of Washington that teaches both Oracle and Java (JDeveloper) courses?
Just try to keep a straight face.
The bottom line is that the arguments stand on their own. Anytime the Java developers don't want to buy it give them a schema and tell them to write an application that guarantees data integrity between two tables with a parent-child relationship. Make the tables very simple such as:
CREATE TABLE parent (
parent_id NUMBER);
CREATE TABLE child (
parent_id NUMBER,
child_id NUMBER,
somevalue VARCHAR2(20));
After they've built their demo app go in with SQL*Plus and corrupt the entire thing and ask them to explain what happened.
Once again ... try to keep a straight face.
If they tell you that you can't use SQL*Plus ... use MS Access or the free version of TOAD.
Once again ... try to keep a straight face.
That's how I taught the lesson to my class. I don't think they will forget the lesson.
-- Daniel Morgan http://www.outreach.washington.edu/ext/certificates/oad/oad_crs.asp http://www.outreach.washington.edu/ext/certificates/aoa/aoa_crs.asp damorgan_at_x.washington.edu (replace 'x' with a 'u' to reply)Received on Sun Jun 13 2004 - 23:35:01 CDT