RE: Model Persistence Survey

2002-01-25 Thread Mark Galbreath
Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 24, 2002 6:50 PM To: Struts Users Mailing List Subject: Re: Model Persistence Survey You know, I've just been hearing a lot about Sun's JDO on the lists and just today by a developer in the of

RE: Model Persistence Survey

2002-01-25 Thread Robert
From: Mark Galbreath [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 24, 2002 6:50 PM To: Struts Users Mailing List Subject: Re: Model Persistence Survey You know, I've just been hearing a lot about Sun's JDO on the lists and just today by a developer in the office. I d/l all the st

Re: Model Persistence Survey

2002-01-24 Thread Mark Galbreath
; <[EMAIL PROTECTED]> Sent: Thursday, January 24, 2002 4:11 AM Subject: Re: Model Persistence Survey > thanks for the clearification of that, I thought had used a DAO to implement > the persistence so that itself was the persistence mechanism > - Original Message - > From: &q

Re: Model Persistence Survey

2002-01-24 Thread Mark Galbreath
You know, I've just been hearing a lot about Sun's JDO on the lists and just today by a developer in the office. I d/l all the stuff but haven't had a chance to check it out yet. Would someone give us a summary of what this tech is all about? Thanks! Mark PS It isn't necessary to simply reply

Re: Model Persistence Survey

2002-01-24 Thread Francisco Hernandez
ednesday, January 23, 2002 11:55 AM Subject: RE: Model Persistence Survey > Hi > > FYI, Data Access Objects (DAOs) is not a persistence mechansim, it's a > design pattern used to encapsulate the mechanism. The mechanism itself can > be JDBC (in the example you have given), C

Re: Model Persistence Survey

2002-01-23 Thread @Basebeans.com
Subject: Re: Model Persistence Survey From: Vic Cekvenich <[EMAIL PROTECTED]> === Easy enough to do delegates. Keith Chew wrote: > Hi > > Just some thoughts. You could use the delegate pattern instead of > inheritence. This will help decouple your FormBeans from your Da

Re: Model Persistence Survey

2002-01-23 Thread Pete Carapetyan
-Original Message- > From: Christopher Barham [mailto:[EMAIL PROTECTED]] > Sent: 23 January 2002 09:51 > To: Struts Users Mailing List > Subject: Re: Model Persistence Survey > > Hi, > I really think that Java Data Objects has a big future... see JSR012: > http://www.jc

RE: Model Persistence Survey

2002-01-23 Thread Keith Chew
] Subject: Re: Model Persistence Survey Subject: Re: Model Persistence Survey From: Vic Cekvenich <[EMAIL PROTECTED]> === Here is a sample DAO Extended Form Bean code : public class NameZoomFrm extends daoFormBean { private String fstName; private String lstName; public String getF

RE: Model Persistence Survey

2002-01-23 Thread Robert
[mailto:@[EMAIL PROTECTED]] Sent: Tuesday, January 22, 2002 5:25 PM To: [EMAIL PROTECTED] Subject: Model Persistence Survey Subject: Model Persistence Survey From: Vic Cekvenich <[EMAIL PROTECTED]> === I do not like surveys. But I would like to get a feel for "How are people implementin

Re: Model Persistence Survey

2002-01-23 Thread @Basebeans.com
Subject: Re: Model Persistence Survey From: Vic Cekvenich <[EMAIL PROTECTED]> === Here is a sample DAO Extended Form Bean code : public class NameZoomFrm extends daoFormBean { private String fstName; private String lstName; public String getFstName() { //get it from _crs

RE: Model Persistence Survey

2002-01-23 Thread Keith Chew
- From: Francisco Hernandez [mailto:[EMAIL PROTECTED]] Sent: Thursday, 24 January 2002 8:23 a.m. To: Struts Users Mailing List Subject: Re: Model Persistence Survey DAOs are another way to do it, but using a framework is much better imo http://java.sun.com/blueprints/code/jps13/src/com/sun/j2ee/

Re: Model Persistence Survey

2002-01-23 Thread Francisco Hernandez
ts Users Mailing List" <[EMAIL PROTECTED]> Sent: Wednesday, January 23, 2002 1:51 AM Subject: Re: Model Persistence Survey > > Hi, > I really think that Java Data Objects has a big future... see JSR012: > http://www.jcp.org/aboutJava/communityprocess/first/jsr012/index.html >