finder queries

2001-11-28 Thread DPietro
Can some one help me out on this? I want to implement a findByName. I've looked at findquery.html and finders.html and am still having trouble. I want a findByName but I dont want to edit the orio-ejb-jar.xml file, I want to put the string into the Bean. Where? In the bean, the home, or the rem

Re: Finder queries...

2001-04-02 Thread Hani Suleiman
Orion doesn't support ejb-ql yet. On Mon, 2 Apr 2001, Alex Paransky wrote: > I have defined the following finder for the relationship (Account has many > Users) - (User has One Account): > > > > findByAccountLogin > > java.lang.String > java.lang.String > > >

Finder queries...

2001-04-02 Thread Alex Paransky
I have defined the following finder for the relationship (Account has many Users) - (User has One Account): findByAccountLogin java.lang.String java.lang.String FROM com.indnet.symbiosis.model.User u WHERE u.account.id = ?1 and u.login = ?2 Here is wha