RE: Cascade delete for CMP set mapping?

2002-02-12 Thread The elephantwalker
Chris,   I believe that cascade delete is fixed in the next release.   Regards,   the elephantwalker www.elephantwalker.com   -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Chris TurnerSent: Tuesday, February 12, 2002 6:34 AMTo: Orion

Re: Cascade delete for CMP set mapping?

2002-02-12 Thread Patrick Lightbody
Cascade deletes aren't supported in Orion (yet), but I hear they should be soon. Hang tight :)   -Pat - Original Message - From: Chris Turner To: Orion-Interest Sent: Tuesday, February 12, 2002 6:34 AM Subject: Cascade delete for CMP set mapping?

Re: Cascade delete for CMP set mapping?

2002-02-12 Thread Hani Suleiman
e set items remains. > > > > Is this expected behaviour? I was expecting Orion to cascade delete this > data! > > How do I make Orion do a cascade delete of the table for the managed > set? Or do I need to add a rule to the database to force it to do the &

Cascade delete for CMP set mapping?

2002-02-12 Thread Chris Turner
ing remove(pk) on the home interface) the data from the entity table goes, but the data in the table for the set items remains.   Is this expected behaviour? I was expecting Orion to cascade delete this data!  How do I make Orion do a cascade delete of the table for the managed set? Or do I nee

Re[2]: cascade-delete support

2001-02-02 Thread Thomas Hertz
Hello, >> Is on the many side of the relationship >> supposed to work >> yet or is it still on the todo list? TD> as of 1.4.4 cascade delete is not implemented. I don't TD> believe its in 1.4.5 either. Check changes.txt. So you TD> have to put code into ejb

RE: cascade-delete support

2001-02-02 Thread Tim Drury
Title: RE: cascade-delete support as of 1.4.4 cascade delete is not implemented.  I don't believe its in 1.4.5 either.  Check changes.txt.  So you have to put code into ejbRemove() to delete dependents of the object. -tim > -Original Message- > From: Christian Bil

cascade-delete support

2001-02-01 Thread Christian Billen
Hi there, I run Orion 1.4.5 and was playing with the EJB 2.0 features. Is on the many side of the relationship supposed to work yet or is it still on the todo list? Thanks, Christian

RE: Cascade Delete

2000-10-03 Thread Reddy Krishnan
but if my understanding is correct, the cmp beans move to the pooled state only AFTER ejbremove is called. -Original Message- From: Christian Eichinger [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 03, 2000 1:35 AM To: Orion-Interest Subject: Re: Cascade Delete Hi, when looking

Re: Cascade Delete

2000-10-03 Thread Christian Eichinger
ause your changes to be ignored? Christian Reddy Krishnan wrote: > > Hi, > > Regarding the same cascade delete problem. I have a clearFields() method which >empties > each of the collection holding relationships or dependent objects. If i call this >from > the client the

RE: Cascade Delete( will orion support ejb-2_0 spec public Draft 2 ???)

2000-09-29 Thread Reddy Krishnan
correction to statement there needs to be only a delete method on the dependent there is only a cascade-delete xml tag. sorry about that. Krishnan -Original Message- From: Reddy Krishnan [mailto:[EMAIL PROTECTED]] Sent: Friday, September 29, 2000 10:55 AM To: Orion-Interest Subject: RE

RE: Cascade Delete( will orion support ejb-2_0 spec public Draft 2 ???)

2000-09-29 Thread Reddy Krishnan
-Original Message- From: Reddy Krishnan Sent: Wednesday, September 27, 2000 12:53 PM To: 'Orion-Interest' Subject: RE: Cascade Delete Hi, Regarding the same cascade delete problem. I have a clearFields() method which empties each of the collection holding relationships or

RE: Cascade Delete

2000-09-27 Thread Nick Newman
I don't think it's wrong to call business methods from ejbRemove. See bugzilla bug #37. Nick At 12:53 PM 9/27/00 -0700, you wrote: >Hi, > >Regarding the same cascade delete problem. I have a clearFields() method >which empties >each of the collection holding relations

RE: Cascade Delete

2000-09-27 Thread Reddy Krishnan
Hi, Regarding the same cascade delete problem. I have a clearFields() method which empties each of the collection holding relationships or dependent objects. If i call this from the client the objects gets deleted properly. But if i call this inside the ejbRemove() ( call clearFields() then

RE: Cascade Delete

2000-09-27 Thread Reddy Krishnan
purpose of having CMPs with OR mapping gets defeated. Do you have any other way of doing this? Krishnan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 27, 2000 12:17 AM To: Orion-Interest Subject: SV: Cascade Delete Cascading delete is

Re: Cascade Delete

2000-09-27 Thread Nick Newman
Hi, If you are using EJB 2.0 then (according to the draft specs) it is up to you to decide if dependent objects are deleted or not. However, if you are using EJB 1.1 and are storing a Collection of things in an Entity bean, then IMHO the container MUST delete the dependent objects along with the

RE: Cascade Delete

2000-09-27 Thread Lopez Esteban
> -Mensaje original- > De: Stefan Frank [SMTP:[EMAIL PROTECTED]] > Enviado el: Miércoles, 27 de Septiembre de 2000 06:29 a.m. > Para: Orion-Interest > Asunto: Re: Cascade Delete > > Take a look at the ejb2.0-Specification(e.g. > http://www.sdm

Re: Cascade Delete

2000-09-27 Thread Stefan Frank
- From: <[EMAIL PROTECTED]> To: "Orion-Interest" <[EMAIL PROTECTED]> Sent: Wednesday, September 27, 2000 9:16 AM Subject: SV: Cascade Delete > Cascading delete is something that some database servers support, so far i > havent seen anywhere that Orion is to support that in

SV: Cascade Delete

2000-09-27 Thread Klaus . Myrseth
-Opprinnelig melding- Fra: Reddy Krishnan [mailto:[EMAIL PROTECTED]] Sendt: 27. september 2000 01:54 Til: Orion-Interest Emne: Cascade Delete Hi, Having some problems while deleting a EJB. When i delete the ejb by ejbobject.remove() method the dependent objects and relationship entries are not

Cascade Delete

2000-09-26 Thread Reddy Krishnan
Hi, Having some problems while deleting a EJB. When i delete the ejb by ejbobject.remove() method the dependent objects and relationship entries are not deleted from the database. Should this not be done automatically by the app server. Is this a problem in Orion or is there some explicit delet